protected virtual void OnColumnSelected(ColumnEventArgs args)
		{
			if(ColumnSelected != null)
			{
				ColumnSelected(this,args);
			}
		}
Exemplo n.º 2
0
 protected virtual void OnColumnShowProperties(ColumnEventArgs args)
 {
     if (ColumnShowProperties != null)
     {
         ColumnShowProperties(this, args);
     }
 }
Exemplo n.º 3
0
 protected virtual void OnColumnSelect(ColumnEventArgs args)
 {
     if (ColumnSelect != null)
     {
         ColumnSelect(this, args);
     }
 }
Exemplo n.º 4
0
 protected virtual void OnColumnShowProperties(ColumnEventArgs args)
 {
     if(ColumnShowProperties != null)
     {
         ColumnShowProperties(this,args);
     }
 }
 private void navigatorControl_ColumnSelect(object sender, ColumnEventArgs args)
 {
     OnColumnSelected(args);    
 }
Exemplo n.º 6
0
        private void DnfColumnSelected(object sender, ColumnEventArgs args)
        {
			_selectedTable = args.Column.ParentTable;
			_pf.SelectedObject = args.Column;
        }
Exemplo n.º 7
0
 private void uiNavigatorControl_ColumnShowProperties(object sender, ColumnEventArgs args)
 {
     uiPropertiesDock.Open();
 }
Exemplo n.º 8
0
 private void uiNavigatorControl_ColumnSelect(object sender, ColumnEventArgs args)
 {
     uiStatusStrip.Text = args.Column.ParentTable.ParentDatabase.Name + " > " +
                        args.Column.ParentTable.Name + " > " +
                        args.Column.Name;
     uiPropertyEditor.SelectedObject = args.Column;
 }