Click here to Skip to main content
15,867,209 members
Articles / Programming Languages / C#
Article

A C# IP Address Control

Rate me:
Please Sign up or sign in to vote.
4.72/5 (98 votes)
28 Apr 2008MIT4 min read 781.9K   39.8K   297   195
A C# analogue to the MFC CIPAddressCtrl

Screenshot - TestIPAddressControl.png

Introduction

Why didn't Microsoft include an IP address control in the stock toolbox for Visual Studio .NET? I needed something similar to the MFC CIPAddressCtrl class in a C# application recently, and was forced to roll my own. I tried to mimic the behavior of CIPAddressCtrl using C# here, and hopefully I've succeeded.

Background

IPAddressControl is really a composite UserControl that aggregates four specialized TextBox controls of type FieldCtrl and three specialized Controls of type DotCtrl. Here's a picture:

Screenshot - close_up.gif

The FieldCtrls do some validation and keyboard filtering, in addition to standard TextBox behavior. The DotCtrls do nothing but draw a dot.

Using the Code

Once the library containing IPAddressControl (IPAddressControlLib.dll) is built, add the control to the Toolbox in Visual Studio. From the Toolbox, just drag the control onto a form and you're ready to go. The interface to IPAddressControl is very simple.

Public Instance Properties

  • AutoHeight: gets or sets a value indicating whether the control is automatically sized vertically according to the current font and border. The default value is true.
  • Blank: gets a value indicating whether all of the fields in the control are empty.
  • BorderStyle: gets or sets the border style of the control. The default value is BorderStyle.Fixed3D.
  • ReadOnly: gets or sets a value indicating if the control is read-only.

Public Instance Methods

  • Clear: Clears the contents of the control.
  • GetAddressBytes: Returns an array of bytes representing the contents of the fields, index 0 being the leftmost field.
  • SetAddressBytes: sets the values of the fields using an array of bytes, index 0 being the leftmost field.
  • SetFieldFocus: sets the keyboard focus to the specified field in the control.
  • SetFieldRange: sets the lower and higher range of a specified field in the control.

The above properties and methods are in addition to the stock properties and methods of UserControl. Stock properties such as Text, Enabled, and Font -- as well as stock methods such as ToString() -- work as expected. The client code can register a handler for the public event, FieldChangedEvent, to be notified when any text in the fields of the control changes.

Note that Text and ToString() may not return the same value. If there are any empty fields in the control, Text will return a value that will reflect the empty fields. ToString() will fill in any empty fields with that field's RangeLower value. Also, if you are using the control to create an IPAddress, you can easily do so using this control's GetAddressBytes() method:

C#
IPAddress ipAddress = new IPAddress( ipAddressControl.GetAddressBytes() );

History

  • 27 Apr 2008
    • Added propagation of KeyDown, KeyUp, and PreviewKeyDown events. Keys.Enter and Keys.Return will now propagate a KeyPress event.
  • 23 Oct 2007
    • ReadOnly should now really be read-only. Thanks to t_suzuki for reporting this bug.
  • 27 Sep 2007
    • Added proper event propagation for focus, keypress, and some mouse events.
    • Added AllowInternalTab and AnyBlank properties.
    • Removed superfluous code.
    • Removed a potential resource leak when calculating text size and added a null check for SetAddressBytes().
    • Compliant with FxCop 1.35.
  • 13 Jun 2007
    • Text set in design mode is persisted.
    • Removed override of AutoSize. Use AutoHeight instead.
    • [VS05] Modified size calculations to conserve horizontal space.
  • 6 Mar 2007
    • Now checks for null when parsing incoming text.
  • 21 Feb 2007
    • Added handling of [Backspace] across fields. Thanks to Antony for reporting this bug.
    • Added better handling of [Delete], and new handlers for [Home] and [End].
    • [VS05] Modified the MinimumSize property of DotControl to tighten up the spacing.
  • 5 May 2006
    • [VS05] Added Baseline to the SnapLines collection for the ControlDesigner class. Made the Text property browsable in design mode. Fixed the control sizing bug when large fonts are used.
  • 13 Oct 2005
    • Compliant with FxCop 1.32.
  • 17 Sep 2005
    • Enhanced to support Windows XP visual styles. Thanks to Carlos for requesting this.
  • 3 Aug 2005
    • Bug fix for Focused property. Thanks to Mario for reporting this.
  • 22 Mar 2005
    • Added a call to OnTextChanged() for the control when the text of any field changes. Thanks to Bertrand for pointing that out.
  • 6 Feb 2005
    • Added missing key handlers. Thanks to Norm and Ed for the heads-up on missing key handlers.
    • Added sizing.
    • Added ReadOnly property.
    • Non-standard color choices now render properly.
    • Added an event to notify clients of text change.
  • 20 Jan 2005 - Initial release.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: MAC address options Pin
mid=57414-Jun-07 9:26
mid=57414-Jun-07 9:26 
QuestionCan add a Port property in this control? Pin
youbest.cn7-Dec-06 20:32
youbest.cn7-Dec-06 20:32 
AnswerRe: Can add a Port property in this control? Pin
mid=57418-Dec-06 0:26
mid=57418-Dec-06 0:26 
GeneralRe: Can add a Port property in this control? Pin
youbest.cn10-Dec-06 15:13
youbest.cn10-Dec-06 15:13 
GeneralRe: Can add a Port property in this control? Pin
mid=574110-Dec-06 22:57
mid=574110-Dec-06 22:57 
AnswerRe: Can add a Port property in this control? Pin
Da_FileServer15-Jan-07 15:59
Da_FileServer15-Jan-07 15:59 
AnswerRe: Can add a Port property in this control? [modified] Pin
mid=57415-Jun-07 12:29
mid=57415-Jun-07 12:29 
GeneralControl width (minimumsize) too big Pin
NazLurker25-Nov-06 18:28
NazLurker25-Nov-06 18:28 
GeneralRe: Control width (minimumsize) too big Pin
NazLurker26-Nov-06 4:33
NazLurker26-Nov-06 4:33 
GeneralRe: Control width (minimumsize) too big Pin
mid=574121-Feb-07 9:58
mid=574121-Feb-07 9:58 
GeneralAdded a bit to allow deleting across the dots Pin
Antony M Kancidrowski15-Nov-06 5:39
Antony M Kancidrowski15-Nov-06 5:39 
GeneralRe: Added a bit to allow deleting across the dots Pin
mid=574121-Feb-07 9:47
mid=574121-Feb-07 9:47 
GeneralRe: Added a bit to allow deleting across the dots Pin
Antony M Kancidrowski21-Feb-07 12:47
Antony M Kancidrowski21-Feb-07 12:47 
GeneralTooltips Pin
zeCod31-Jul-06 1:19
zeCod31-Jul-06 1:19 
GeneralRe: Tooltips Pin
mid=574131-Jul-06 6:37
mid=574131-Jul-06 6:37 
GeneralRe: Tooltips [modified] Pin
mid=574131-Jul-06 18:16
mid=574131-Jul-06 18:16 
GeneralMy thanks too ... Pin
Dirk DiGiorgio-Haag30-Jun-06 12:39
Dirk DiGiorgio-Haag30-Jun-06 12:39 
GeneralTouch Screen Version [modified] Pin
Andrew Pearson19-Jun-06 11:46
Andrew Pearson19-Jun-06 11:46 
QuestionFieldCtrl empty? Pin
LibeFree29-May-06 2:31
LibeFree29-May-06 2:31 
AnswerRe: FieldCtrl empty? [modified] Pin
mid=574129-May-06 3:06
mid=574129-May-06 3:06 
AnswerRe: FieldCtrl empty? Pin
mid=574129-May-06 12:41
mid=574129-May-06 12:41 
GeneralRe: FieldCtrl empty? Pin
LibeFree29-May-06 13:07
LibeFree29-May-06 13:07 
QuestionWhich license does it follow? Pin
firstrose20007-May-06 21:30
firstrose20007-May-06 21:30 
AnswerRe: Which license does it follow? [modified] Pin
mid=57418-May-06 5:44
mid=57418-May-06 5:44 
GeneralVS2005: Setting IP Address using a property in the Designer Pin
dimaki3-May-06 12:44
dimaki3-May-06 12:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.