Exemplo n.º 1
0
 public PanelHandler()
 {
     Enabled = true;
     Control = new MacEventView {
         Handler = this
     };
 }
Exemplo n.º 2
0
		public TableLayoutHandler()
		{
#if OSX
			Control = new MacEventView { Handler = this };
#elif IOS
			Control = new NSView();
#endif
		}
Exemplo n.º 3
0
 public override void DrawBezelWithFrame(System.Drawing.RectangleF frame, NSView controlView)
 {
     if (Color != null)
     {
         MacEventView.Colourize(controlView, Color.Value, delegate {
             base.DrawBezelWithFrame(frame, controlView);
         });
     }
     else
     {
         base.DrawBezelWithFrame(frame, controlView);
     }
 }
Exemplo n.º 4
0
 public PanelHandler()
 {
     Control = new MacEventView {
         Handler = this
     };
 }