/// <RegisterForChangeEvent> /// The client can Register for automatic update whenever the values are changing /// </RegisterForChangeEvent> /// public void RegisterForChangeEvent(ref NotifyClient refNotifyClient) { // If there's a valid object, the values are copied. try { if (null != refNotifyClient) { objNotifyClient = refNotifyClient; objNotifyClient.Range1 = strRange1; objNotifyClient.Range2 = strRange2; } } catch { System.Windows.Forms.MessageBox.Show("The Registered Event object has a Bad memory. Please correct it", "Error!"); } }
private XmlTextReader xmlTextReader; // XML Reader Class #endregion Fields #region Constructors public RangeSelectorControl() { // This call is required by the Windows.Forms Form Designer. InitializeComponent(); /// <VariableInit> /// The Below are Initialization of Variables to its Default values. /// </VariableInit> /// #region Initialization of Variables to its Default Values if (null != strLeftImagePath) { imImageLeft = System.Drawing.Image.FromFile(strLeftImagePath); } if (null != strRightImagePath) { imImageRight = System.Drawing.Image.FromFile(strRightImagePath); } objNotifyClient = null; strRangeString = "Range"; strDelimiter = ","; // Because in Germany decimal point is represented as , i.e., "10.50 in US" is "10,50 in Germany" strRange = "0,10,20,30,Good,50,60,70,Great,90,100"; strRange1 = "10"; strRange2 = "90"; strLeftImagePath = null; strRightImagePath = null; fHeightOfThumb = 20.0f; fWidthOfThumb = 10.0f; this.BackColor = System.Drawing.Color.LightBlue; clrInFocusBarColor = System.Drawing.Color.Magenta; clrDisabledBarColor = System.Drawing.Color.Gray; clrInFocusRangeLabelColor = System.Drawing.Color.Green; clrDisabledRangeLabelColor = System.Drawing.Color.Gray; clrThumbColor = System.Drawing.Color.Purple; fStringOutputFontSize = 10.0f; clrStringOutputFontColor = System.Drawing.Color.Black; fntStringOutputFontFamily = System.Drawing.FontFamily.GenericSerif; fntRangeOutputStringFont = new System.Drawing.Font(fntStringOutputFontFamily, fStringOutputFontSize, System.Drawing.FontStyle.Bold); unSizeOfMiddleBar = 3; unGapFromLeftMargin = 10; unGapFromRightMargin = 10; fntLabelFontFamily = System.Drawing.FontFamily.GenericSansSerif; fLabelFontSize = 8.25f; fntLabelFontStyle = System.Drawing.FontStyle.Bold; fntLabelFont = new System.Drawing.Font(fntLabelFontFamily, fLabelFontSize, fntLabelFontStyle); strSplitLabels = new string[1024]; ptThumbPoints1 = new System.Drawing.PointF[3]; ptThumbPoints2 = new System.Drawing.PointF[3]; bMouseEventThumb1 = false; bMouseEventThumb2 = false; bAnimateTheSlider = false; #endregion /// <VariableInit> /// The Below are Initialization of Variables to its Default values. /// </VariableInit> /// }