Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="KListItem"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 /// <param name="text">The text.</param>
 /// <param name="value">The value.</param>
 public StatusItem(KListControl parent, string text, object value)
 {
     m_parent = parent;
     m_text = text;
     m_value = value;
 }
Beispiel #2
0
		//�Public�Methods�(2)�

        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public virtual void Dispose()
        {

            m_parent = null;
        }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="KListItem"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 /// <param name="text">The text.</param>
 /// <param name="value">The value.</param>
 public StatusItem(KListControl parent, string text, object value)
 {
     _mParent = parent;
     Text = text;
     Value = value;
 }
Beispiel #4
0
 public SideMenu(KListControl.SideShown side)
 {
     _side = side;
     _height = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
     _width = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
 }
Beispiel #5
0
        //�Public�Methods�(2)�

        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public virtual void Dispose()
        {

            _mParent = null;
        }