Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UICuesEventArgs.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27d18c24504a1657ee39313b42fb11ba72f0aefb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
//
// System.Windows.Forms.UICuesEventArgs
//
// Author:
//	 stubbed out by Stefan Warnke (StefanW@POBox.com)
//
// (C) Ximian, Inc., 2002
//
using System;



namespace Sytem.Windows.Forms
{
	// <summary>
	//	This is only a template.  Nothing is implemented yet.
	// </summary>


	/// <summary>
	/// UICuesEventArgs specifies which user interface feature changed and its new value.
	/// </summary>
	public class UICuesEventArgs : EventArgs
	{
//		// Specifies the state of the user interface
//		public enum UICues {
//			Changed,		// The state of the focus cues and keyboard cues has changed. 
//			ChangeFocus,	// The state of the focus cues has changed. 
//			ChangeKeyboard,	// The state of the keyboard cues has changed. 
//			None,			// No change was made.
//			ShowFocus,		// Focus rectangles are displayed after the change.
//			ShowKeyboard,	// Keyboard cues are underlined after the change. 
//			Shown			// Focus rectangles are displayed and keyboard cues are underlined 
//							// after the change. 
//		};
//
//		/// --- Constructor ---
//		public UICuesEventArgs(UICues uicues) {
//			throw new NotImplementedException ();
//		}
//
//		/// --- Destructor ---
//		~UICuesEventArgs() {
//			throw new NotImplementedException ();
//		}
//
//		/// --- Public Properties ---
//		#region Public Properties
//
//		// Gets the bitwise combination of the UICues values
//		public UICues Changed {
//			get {
//				throw new NotImplementedException ();
//			}
//		}
//		
//		// Gets a value indicating whether the state of the focus cues has changed.
//		public bool ChangeFocus {
//			get {
//				throw new NotImplementedException ();
//			}
//		}
//
//		// Gets a value indicating whether the state of the keyboard cues has changed
//		public bool ChangeKeyboard {
//			get {
//				throw new NotImplementedException ();
//			}
//		}
//
//		// Gets a value indicating whether focus rectangles are shown after the change
//		public bool ShowFocus {
//			get {
//				throw new NotImplementedException ();
//			}
//		}
//
//		// Gets a value indicating whether keyboard cues are underlined after the change
//		public bool ShowKeyboard {
//			get {
//				throw new NotImplementedException ();
//			}
//		}
//		#endregion // Public Properties
//
//		/// --- Public Methods ---
//		#region Public Methods
//
//		// Returns a String that represents the current Object
//		public override string ToString() {			
//			throw new NotImplementedException ();
//		}
//		#endregion // Public Methods

	}
}