Exemplo n.º 1
0
 public GridViewHandler()
 {
     Control = new EtoTableView
     {
         Handler       = this,
         FocusRingType = NSFocusRingType.None,
         DataSource    = new EtoTableViewDataSource {
             Handler = this
         },
         Delegate = new EtoTableDelegate {
             Handler = this
         },
         ColumnAutoresizingStyle = NSTableViewColumnAutoresizingStyle.None
     };
 }
Exemplo n.º 2
0
        protected override void Initialize()
        {
            Control = new EtoTableView {
                Handler       = this,
                FocusRingType = NSFocusRingType.None,
                DataSource    = new EtoTableViewDataSource {
                    Handler = this
                },
                Delegate = new EtoTableDelegate {
                    Handler = this
                },
                ColumnAutoresizingStyle = NSTableViewColumnAutoresizingStyle.None
            };

            base.Initialize();
        }