OnWindowSelectionChange() публичный Метод

public OnWindowSelectionChange ( ) : void
Результат void
Пример #1
0
 void adxWordEvents_WindowSelectionChange(object sender, object hostObj)
 {
     try
     {
         mainController.OnWindowSelectionChange();
     }
     catch (Exception ex)
     {
         LogException(ex);
     }
 }
Пример #2
0
        void adxWordEvents_WindowSelectionChange(object sender, object hostObj)
        {
            // Cursor is set to Wait by the time we get here, so
            // all we can do is reset it
            Cursor.Current = Cursors.IBeam;

            try
            {
                mainController.OnWindowSelectionChange();
            }
            catch (Exception ex)
            {
                LogException(ex);
            }
        }
Пример #3
0
        void adxWordEvents_WindowSelectionChange(object sender, object hostObj)
        {
            // Cursor is set to Wait by the time we get here, so
            // all we can do is reset it
            Cursor.Current = Cursors.IBeam;

            var xx = this.adxRibbonBox1.AsRibbon.SelectedItemId;

            try
            {
                CalcActiveTab();
                mainController.OnWindowSelectionChange();
            }
            catch (Exception ex)
            {
                LogException(ex);
            }
        }