Example #1
0
		public MainForm()
		{
			Menu = new MenuBar();

			// create a new native MonoMac view and wrap it in an eto control
			var nativeControl = new MyNativeWidget().ToEto();

			Content = new TableLayout
			{
				Padding = new Padding(10),
				Spacing = new Size(5, 5),
				Rows =
				{
					nativeControl,
					null,
					new TableLayout(new TableRow(null, new Button { Text = "An Eto.Forms button" })),
				}
			};
		}
Example #2
0
        public MainForm()
        {
            Menu = new MenuBar();

            // create a new native MonoMac view and wrap it in an eto control
            var nativeControl = new MyNativeWidget().ToEto();

            Content = new TableLayout
            {
                Padding = new Padding(10),
                Spacing = new Size(5, 5),
                Rows    =
                {
                    nativeControl,
                    null,
                    new TableLayout(new TableRow(null,new Button  {
                        Text = "An Eto.Forms button"
                    })),
                }
            };
        }