(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / ContextMenu.cs
blobac06acc5e6dccf1288a523714b5ca2d4c48e8315
1 //
2 // System.Windows.Forms.ContextMenu.cs
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) Ximian, Inc., 2002
9 //
11 //using System.ComponentModel;
12 //using System.Collections;
13 using System.Drawing;
15 namespace System.Windows.Forms {
17 /// <summary>
18 /// Represents a Windows combo box control.
19 /// ToDo note:
20 /// - nothing is implemented
21 /// </summary>
23 [MonoTODO]
24 public class ContextMenu : Menu {
26 // private fields
27 RightToLeft rightToLeft;
29 // --- Constructor ---
30 [MonoTODO]
31 public ContextMenu() //: base(null)
33 rightToLeft = RightToLeft.Inherit;
36 [MonoTODO]
37 public ContextMenu(MenuItem[] menuItems) //: base(menuItems)//menu does not have public constructor. Is this a gtk menu?
44 // --- Properties ---
45 public virtual RightToLeft RightToLeft {
46 get { return rightToLeft; }
47 set { rightToLeft=value; }
50 [MonoTODO]
51 public Control SourceControl {
52 get { throw new NotImplementedException (); }
58 /// --- Methods ---
59 /// internal .NET framework supporting methods, not stubbed out:
60 /// - protected internal virtual void OnPopup(EventArgs e);
61 [MonoTODO]
62 public void Show(Control control,Point pos)
64 throw new NotImplementedException ();
70 /// events
71 [MonoTODO]
72 public event EventHandler Popup {
73 add {
74 throw new NotImplementedException ();
76 remove {
77 throw new NotImplementedException ();