**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / GiveFeedbackEventArgs.cs
blob30cf6222cc72a67784093ad1c71e2948da1ce190
1 //
2 // System.Windows.Forms.GiveFeedbackEventArgs.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Partialy completed by Dennis Hayes (dennish@raytek.com)
7 // Gianandrea Terzi (gianandrea.terzi@lario.com)
8 //
9 // (C) 2002 Ximian, Inc
12 namespace System.Windows.Forms {
14 /// <summary>
15 /// Completed
16 /// </summary>
18 public class GiveFeedbackEventArgs : EventArgs {
20 #region Fields
21 DragDropEffects effect;
22 bool useDefaultCursors;
23 #endregion
25 public GiveFeedbackEventArgs( DragDropEffects effect, bool useDefaultCursors )
27 this.effect = effect;
28 this.useDefaultCursors = useDefaultCursors;
31 #region Public Properties
33 public DragDropEffects Effect
35 get {
36 return effect;
40 public bool UseDefaultCursors {
41 get {
42 return useDefaultCursors;
44 set {
45 useDefaultCursors = value;
48 #endregion