//Convert wird für die Konvertierung in das Display-Format verwendet public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { ObservableCollection<RibbonTabItem> tabItems = new ObservableCollection<RibbonTabItem>(); IEnumerable<ITixMenuTabItem> menuItem = value as IEnumerable<ITixMenuTabItem>; if (menuItem != null) { foreach (var tab in menuItem) { RibbonTabItem tabItem = new RibbonTabItem(); tabItem.Header = tab.Header; foreach (var group in tab.Groups) { RibbonGroupBox groupBox = new RibbonGroupBox(); groupBox.Header = group.Header; foreach (var button in group.Buttons) { Button fluentButton = new Button(); fluentButton.Header = button.Header; fluentButton.Command = button.Command; groupBox.Items.Add(fluentButton); } tabItem.Groups.Add(groupBox); } tabItems.Add(tabItem); } } return tabItems; }
void Ribbon_RibbonTabAdded(Fluent.RibbonTabItem ribbonTab) { if (string.IsNullOrEmpty(ribbonTab.Name)) { return; } CompositeRemoteCommand ribbonRemoteCommandFound = null; foreach (var ribbonRemoteCommand in DelayGenerateUiList) { var uidata = (RibbonUIData)(ribbonRemoteCommand.DeserializedUIData); if (!ribbonTab.Name.Equals(uidata.UiPosition.RibbonTab.Name)) { continue; } GenerateUI(ribbonRemoteCommand); ribbonRemoteCommandFound = ribbonRemoteCommand; break; } if (ribbonRemoteCommandFound != null) { DelayGenerateUiList.Remove(ribbonRemoteCommandFound); } }
/// <summary> /// Removes tab item /// </summary> /// <param name="item">Ribbon tab item</param> internal void RemoveTabItem(RibbonTabItem item) { this.Items.Remove(item); this.UpdateInnerVisiblityAndGroupBorders(); }
/// <summary> /// Appends tab item /// </summary> /// <param name="item">Ribbon tab item</param> internal void AppendTabItem(RibbonTabItem item) { this.Items.Add(item); this.UpdateInnerVisiblityAndGroupBorders(); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.fmMain = ((LEDX.MWin)(target)); return; case 2: this.ribbon = ((Fluent.Ribbon)(target)); #line 57 "..\..\MainWindow.xaml" this.ribbon.SelectedTabChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Ribbon_SelectedTabChanged); #line default #line hidden return; case 3: this.btNewProj = ((Fluent.Button)(target)); return; case 4: this.btOpenProj = ((Fluent.Button)(target)); return; case 5: this.btSaveProj = ((Fluent.Button)(target)); return; case 6: this.tbEdit = ((Fluent.RibbonTabItem)(target)); return; case 7: this.btUndo = ((Fluent.SplitButton)(target)); return; case 8: this.btPasteFram = ((Fluent.SplitButton)(target)); return; case 9: this.rgbContrProp = ((Fluent.RibbonGroupBox)(target)); return; case 10: this.spAddNew = ((Fluent.SplitButton)(target)); return; case 11: this.btDel = ((Fluent.MenuItem)(target)); return; case 12: this.tbConName = ((Fluent.TextBox)(target)); return; case 13: this.tbConNumb = ((Fluent.Spinner)(target)); return; case 14: this.tbConButt = ((Fluent.Spinner)(target)); return; case 15: this.rgbFrameProp = ((Fluent.RibbonGroupBox)(target)); return; case 16: this.spTime = ((Fluent.Spinner)(target)); return; case 17: this.btCopyFram = ((Fluent.Button)(target)); return; case 18: this.btCutFram = ((Fluent.Button)(target)); return; case 19: this.btDelFram = ((Fluent.Button)(target)); return; case 20: this.btToSample = ((Fluent.Button)(target)); return; case 21: this.spbtFSet = ((Fluent.SplitButton)(target)); #line 179 "..\..\MainWindow.xaml" this.spbtFSet.DropDownClosed += new System.EventHandler(this.SpbtFSet_DropDownClosed); #line default #line hidden return; case 22: this.rgbColorProp = ((Fluent.RibbonGroupBox)(target)); return; case 23: this.btBegColor = ((Fluent.Button)(target)); return; case 24: this.rctBegClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 25: this.btCopyColor = ((Fluent.Button)(target)); return; case 26: this.btGetColor = ((Fluent.Button)(target)); return; case 27: this.btEndColor = ((Fluent.Button)(target)); return; case 28: this.rctEndClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 29: this.btCopy = ((Fluent.Button)(target)); return; case 30: this.grSampl = ((Fluent.InRibbonGallery)(target)); return; case 31: this.tbPalyer = ((Fluent.RibbonTabItem)(target)); return; case 32: this.rgbPropLayer = ((Fluent.RibbonGroupBox)(target)); return; case 33: this.btLayerDown = ((Fluent.Button)(target)); return; case 34: this.btLayerTop = ((Fluent.Button)(target)); return; case 35: this.btDelLay = ((Fluent.Button)(target)); return; case 36: this.rgbPropPng = ((Fluent.RibbonGroupBox)(target)); return; case 37: this.cbController = ((Fluent.ComboBox)(target)); return; case 38: this.lgWidth = ((Fluent.TextBox)(target)); return; case 39: this.lgHeight = ((Fluent.TextBox)(target)); return; case 40: this.rgbPropText = ((Fluent.RibbonGroupBox)(target)); return; case 41: this.lbtemTest = ((System.Windows.Controls.Label)(target)); return; case 42: this.temTest = ((LEDX.Components.MultiLineTextEditor)(target)); return; case 43: this.spTextSize = ((Fluent.Spinner)(target)); return; case 44: this.cbFontFamaly = ((Fluent.ComboBox)(target)); return; case 45: this.rctTextClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 46: this.tbFlash = ((Fluent.RibbonTabItem)(target)); return; case 47: this.lbPort = ((System.Windows.Controls.Label)(target)); return; case 48: this.cbComName = ((Fluent.ComboBox)(target)); return; case 49: this.lbSpeed = ((System.Windows.Controls.Label)(target)); return; case 50: this.cbComRate = ((Fluent.ComboBox)(target)); return; case 51: this.btRefrPorts = ((Fluent.Button)(target)); return; case 52: this.tbSync = ((Fluent.ToggleButton)(target)); return; case 53: this.tgbShowLog = ((Fluent.ToggleButton)(target)); return; case 54: this.spProgress = ((System.Windows.Controls.StackPanel)(target)); return; case 55: this.uiScaleSlider = ((System.Windows.Controls.Slider)(target)); #line 531 "..\..\MainWindow.xaml" this.uiScaleSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.uiScaleSlider_ValueChanged); #line default #line hidden return; case 56: this.uiMan = ((LEDX.Components.PlayScale)(target)); return; case 57: this.svSearch = ((System.Windows.Controls.ScrollViewer)(target)); return; case 58: this.sldTime = ((LEDX.Components.TimeSlider)(target)); #line 561 "..\..\MainWindow.xaml" this.sldTime.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.sld_ValueChanged); #line default #line hidden return; case 59: this.scroll = ((System.Windows.Controls.ScrollViewer)(target)); return; case 60: this.icContr = ((System.Windows.Controls.ItemsControl)(target)); return; case 61: this.svTracks = ((System.Windows.Controls.ScrollViewer)(target)); return; case 62: this.icTrack = ((System.Windows.Controls.ItemsControl)(target)); return; case 63: this.iCanv = ((LEDX.Components.IncRender)(target)); #line 598 "..\..\MainWindow.xaml" this.iCanv.SelectionChanged += new System.EventHandler(this.iCanv_SelectionChanged); #line default #line hidden return; case 64: this.mainScroller = ((System.Windows.Controls.ScrollViewer)(target)); #line 607 "..\..\MainWindow.xaml" this.mainScroller.ScrollChanged += new System.Windows.Controls.ScrollChangedEventHandler(this.mainScroller_ScrollChanged); #line default #line hidden return; case 65: this.svLog = ((System.Windows.Controls.ScrollViewer)(target)); return; case 66: this.tbLog = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 6 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.RibbonWindow_KeyUp); #line default #line hidden #line 9 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.RibbonWindow_PreviewMouseDown); #line default #line hidden #line 10 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden #line 11 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).Closed += new System.EventHandler(this.Window_Closed); #line default #line hidden return; case 8: #line 82 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 82 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 9: #line 83 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 83 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 10: #line 84 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 84 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 11: #line 85 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 85 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 12: #line 86 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 86 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 13: #line 87 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 87 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 14: #line 88 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 88 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 15: #line 89 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 89 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 16: this.col1 = ((System.Windows.Controls.ColumnDefinition)(target)); return; case 17: this.col5 = ((System.Windows.Controls.ColumnDefinition)(target)); return; case 18: this.rowStage = ((System.Windows.Controls.RowDefinition)(target)); return; case 19: this.row4 = ((System.Windows.Controls.RowDefinition)(target)); return; case 20: this.tabControl1 = ((System.Windows.Controls.TabControl)(target)); return; case 21: this.ribbon = ((Fluent.Ribbon)(target)); return; case 22: this.invisibleTabGroup = ((Fluent.RibbonContextualTabGroup)(target)); return; case 23: #line 177 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_8); #line default #line hidden return; case 24: #line 181 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_7); #line default #line hidden return; case 25: this.tabItem1 = ((Fluent.RibbonTabItem)(target)); return; case 26: this.Clipboard = ((Fluent.RibbonGroupBox)(target)); return; case 27: this.btnCreate = ((System.Windows.Controls.Button)(target)); #line 342 "..\..\..\MainWindow.xaml" this.btnCreate.Click += new System.Windows.RoutedEventHandler(this.btnCreate_Click); #line default #line hidden return; case 28: this.btnLoad = ((System.Windows.Controls.Button)(target)); #line 365 "..\..\..\MainWindow.xaml" this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click); #line default #line hidden return; case 29: this.btnClone = ((System.Windows.Controls.Button)(target)); #line 387 "..\..\..\MainWindow.xaml" this.btnClone.Click += new System.Windows.RoutedEventHandler(this.btnClone_Click); #line default #line hidden return; case 30: this.btnPageAdd = ((System.Windows.Controls.Button)(target)); #line 409 "..\..\..\MainWindow.xaml" this.btnPageAdd.Click += new System.Windows.RoutedEventHandler(this.btnPageAdd_Click); #line default #line hidden return; case 31: #line 422 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click); #line default #line hidden return; case 32: #line 423 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click); #line default #line hidden return; case 33: this.btnPageDel = ((System.Windows.Controls.Button)(target)); #line 429 "..\..\..\MainWindow.xaml" this.btnPageDel.Click += new System.Windows.RoutedEventHandler(this.btnPageDel_Click); #line default #line hidden return; case 34: this.btnCut = ((System.Windows.Controls.Button)(target)); #line 442 "..\..\..\MainWindow.xaml" this.btnCut.Click += new System.Windows.RoutedEventHandler(this.btnCut_Click); #line default #line hidden return; case 35: this.btnCopy = ((System.Windows.Controls.Button)(target)); #line 465 "..\..\..\MainWindow.xaml" this.btnCopy.Click += new System.Windows.RoutedEventHandler(this.btnCopy_Click); #line default #line hidden return; case 36: this.btnPaste = ((System.Windows.Controls.Button)(target)); #line 488 "..\..\..\MainWindow.xaml" this.btnPaste.Click += new System.Windows.RoutedEventHandler(this.btnPaste_Click); #line default #line hidden return; case 37: this.Preview = ((System.Windows.Controls.Button)(target)); #line 511 "..\..\..\MainWindow.xaml" this.Preview.Click += new System.Windows.RoutedEventHandler(this.Preview_Click); #line default #line hidden return; case 38: this.btnPublish = ((System.Windows.Controls.Button)(target)); #line 525 "..\..\..\MainWindow.xaml" this.btnPublish.Click += new System.Windows.RoutedEventHandler(this.btnPublish_Click); #line default #line hidden return; case 39: this.btnUndo = ((System.Windows.Controls.Button)(target)); #line 539 "..\..\..\MainWindow.xaml" this.btnUndo.Click += new System.Windows.RoutedEventHandler(this.btnUndo_Click); #line default #line hidden return; case 40: this.btnRedo = ((System.Windows.Controls.Button)(target)); #line 566 "..\..\..\MainWindow.xaml" this.btnRedo.Click += new System.Windows.RoutedEventHandler(this.btnRedo_Click); #line default #line hidden return; case 41: this.toggleButton1 = ((System.Windows.Controls.Primitives.ToggleButton)(target)); return; case 42: this.popup1 = ((System.Windows.Controls.Primitives.Popup)(target)); return; case 43: #line 613 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 44: #line 616 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 45: #line 619 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 46: #line 622 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 47: this.tabItem2 = ((Fluent.RibbonTabItem)(target)); return; case 48: this.ResourcesRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 49: this.localImgMenu = ((Fluent.MenuItem)(target)); return; case 50: this.localMovieMenu = ((Fluent.MenuItem)(target)); return; case 51: this.localSoundMenu = ((Fluent.MenuItem)(target)); return; case 52: this.localDocumentMenu = ((Fluent.MenuItem)(target)); return; case 53: this.localTPageGroupMenu = ((Fluent.MenuItem)(target)); return; case 54: #line 721 "..\..\..\MainWindow.xaml" ((Fluent.SplitButton)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 55: #line 736 "..\..\..\MainWindow.xaml" ((Fluent.SplitButton)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 56: #line 750 "..\..\..\MainWindow.xaml" ((Fluent.SplitButton)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 57: #line 765 "..\..\..\MainWindow.xaml" ((Fluent.SplitButton)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 58: #line 779 "..\..\..\MainWindow.xaml" ((Fluent.SplitButton)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 59: this.Shape001 = ((System.Windows.Shapes.Path)(target)); return; case 60: this.Shape002 = ((System.Windows.Shapes.Path)(target)); return; case 61: this.Shape003 = ((System.Windows.Shapes.Path)(target)); return; case 62: this.Shape004 = ((System.Windows.Shapes.Path)(target)); return; case 63: this.Shape005 = ((System.Windows.Shapes.Path)(target)); return; case 64: this.Shape006 = ((System.Windows.Shapes.Path)(target)); return; case 65: this.Shape007 = ((System.Windows.Shapes.Path)(target)); return; case 66: this.Shape008 = ((System.Windows.Shapes.Path)(target)); return; case 67: this.Shape009 = ((System.Windows.Shapes.Path)(target)); return; case 68: this.Shape010 = ((System.Windows.Shapes.Path)(target)); return; case 69: this.Shape011 = ((System.Windows.Shapes.Path)(target)); return; case 70: this.Shape012 = ((System.Windows.Shapes.Path)(target)); return; case 71: this.Shape013 = ((System.Windows.Shapes.Path)(target)); return; case 72: this.Shape014 = ((System.Windows.Shapes.Path)(target)); return; case 73: this.Shape015 = ((System.Windows.Shapes.Path)(target)); return; case 74: this.Shape016 = ((System.Windows.Shapes.Path)(target)); return; case 75: this.Shape017 = ((System.Windows.Shapes.Path)(target)); return; case 76: #line 893 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_6); #line default #line hidden return; case 77: this.treeViewControl1 = ((System.Windows.Controls.TreeView)(target)); #line 896 "..\..\..\MainWindow.xaml" this.treeViewControl1.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeViewControl1_SelectedItemChanged); #line default #line hidden #line 897 "..\..\..\MainWindow.xaml" this.treeViewControl1.Drop += new System.Windows.DragEventHandler(this.PubDropTreeAndBlockEvent); #line default #line hidden return; case 78: this.scrollViewer = ((System.Windows.Controls.ScrollViewer)(target)); return; case 79: this.grid = ((System.Windows.Controls.Grid)(target)); return; case 80: this.scaleTransform = ((System.Windows.Media.ScaleTransform)(target)); return; case 81: this.propertyManage1 = ((jg.Editor.Library.Property.PropertyManage)(target)); return; case 82: #line 931 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_5); #line default #line hidden return; case 83: #line 944 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_5); #line default #line hidden return; case 84: #line 958 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_5); #line default #line hidden return; case 85: #line 965 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); #line default #line hidden return; case 86: #line 966 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1); #line default #line hidden return; case 87: #line 967 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2); #line default #line hidden return; case 88: #line 968 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_3); #line default #line hidden return; case 89: #line 969 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_4); #line default #line hidden return; case 90: this.controlTimeLine = ((jg.Editor.Library.ControlTimeLine)(target)); return; case 91: this.zoomSlider = ((System.Windows.Controls.Slider)(target)); return; case 92: this.ShowNewWin = ((System.Windows.Controls.Grid)(target)); return; case 93: this.ProgressEditBusyName = ((jg.Editor.Library.Control.ProgressEditBusy)(target)); return; } this._contentLoaded = true; }
public void RemoveRibbonItem(RibbonTabItem ribbonItem) { regionManager.Regions[RegionNames.Ribbon].Remove(ribbonItem); }
private void AddRibbonTab_OnClick(object sender, RoutedEventArgs e) { var tab = new RibbonTabItem { Header = "Test" }; var group = new RibbonGroupBox(); for (var i = 0; i < 20; i++) { group.Items.Add(this.CreateRibbonButton()); } tab.Groups.Add(group); this.ribbon.Tabs.Add(tab); }
/// <summary> /// Appends tab item /// </summary> /// <param name="item">Ribbon tab item</param> internal void AppendTabItem(RibbonTabItem item) { Items.Add(item); item.Visibility = Visibility; UpdateGroupBorders(); }
private void btnTest_Click(object sender, RoutedEventArgs e) { /* We could easily move this to another project and send that method */ //Following could be an example of what the most basic plugin could look like //We could also separate plugins so they could be enabled WHEN //Always OR Folder_Selected OR File_Selected Action<string, string> pluginExampleActivateBasic = (string pluginPath, string currentFileOrFolder) => Process.Start(pluginPath, currentFileOrFolder); var Tab = new Fluent.RibbonTabItem() { Header = "Plugins", ToolTip = "Plugins" }; TheRibbon.Tabs.Add(Tab); var groupBox1 = new RibbonGroupBox() { Header = "Test" }; Tab.Groups.Add(groupBox1); var XML = @"<Shortcuts> <Shortcut Name='Test' Path = 'C:\Aaron'/> </Shortcuts>"; var xDoc = XElement.Parse(XML); var shortcuts = xDoc.Elements("Shortcut"); var dropDown = new SplitButton(); groupBox1.Items.Add(dropDown); foreach (var Node in xDoc.Elements("Shortcut")) { var item = new MenuItem() { Header = Node.Attribute("Name").Value }; item.Click += (x, y) => Process.Start(Node.Attribute("Path").Value); dropDown.Items.Add(item); } }
// Header changed handler static void OnHeaderChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { RibbonTabItem tabItem = (RibbonTabItem)d; tabItem.CoerceValue(ToolTipProperty); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 13 "..\..\..\MainWindow.xaml" ((Inter_face.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.RibbonWindow_Loaded); #line default #line hidden return; case 2: #line 53 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Image)(target)).ImageFailed += new System.EventHandler <System.Windows.ExceptionRoutedEventArgs>(this.Image_ImageFailed); #line default #line hidden return; case 3: this.ClosedEventToCommand = ((GalaSoft.MvvmLight.Command.EventToCommand)(target)); return; case 4: this.CreatNewWork = ((Fluent.Button)(target)); #line 315 "..\..\..\MainWindow.xaml" this.CreatNewWork.Click += new System.Windows.RoutedEventHandler(this.CreatNewWork_Click); #line default #line hidden return; case 5: this.loadformdatabase = ((Fluent.Button)(target)); #line 316 "..\..\..\MainWindow.xaml" this.loadformdatabase.Click += new System.Windows.RoutedEventHandler(this.loadformdatabase_Click); #line default #line hidden return; case 6: this.loadformSourceZip = ((Fluent.Button)(target)); #line 317 "..\..\..\MainWindow.xaml" this.loadformSourceZip.Click += new System.Windows.RoutedEventHandler(this.loadformSourceZip_Click); #line default #line hidden #line 317 "..\..\..\MainWindow.xaml" this.loadformSourceZip.DragEnter += new System.Windows.DragEventHandler(this.loadformSourceZip_DragEnter); #line default #line hidden #line 317 "..\..\..\MainWindow.xaml" this.loadformSourceZip.Drop += new System.Windows.DragEventHandler(this.loadformSourceZip_Drop); #line default #line hidden return; case 7: this.loadformOpZip = ((Fluent.Button)(target)); #line 318 "..\..\..\MainWindow.xaml" this.loadformOpZip.Click += new System.Windows.RoutedEventHandler(this.loadformOpZip_Click); #line default #line hidden #line 318 "..\..\..\MainWindow.xaml" this.loadformOpZip.DragEnter += new System.Windows.DragEventHandler(this.loadformOpZip_DragEnter); #line default #line hidden #line 318 "..\..\..\MainWindow.xaml" this.loadformOpZip.Drop += new System.Windows.DragEventHandler(this.loadformOpZip_Drop); #line default #line hidden return; case 8: this.SaveSourcedata = ((Fluent.Button)(target)); #line 321 "..\..\..\MainWindow.xaml" this.SaveSourcedata.Click += new System.Windows.RoutedEventHandler(this.SaveSourcedata_Click); #line default #line hidden return; case 9: this.SaveOpdata = ((Fluent.Button)(target)); #line 322 "..\..\..\MainWindow.xaml" this.SaveOpdata.Click += new System.Windows.RoutedEventHandler(this.SaveOpdata_Click); #line default #line hidden return; case 10: this.ExportToSvg = ((Fluent.Button)(target)); return; case 11: this.ClickEventToCommand = ((GalaSoft.MvvmLight.Command.EventToCommand)(target)); return; case 12: this.openpdfile = ((Fluent.Button)(target)); #line 335 "..\..\..\MainWindow.xaml" this.openpdfile.Click += new System.Windows.RoutedEventHandler(this.openpdfile_Click); #line default #line hidden return; case 13: this.openqxfile = ((Fluent.Button)(target)); #line 336 "..\..\..\MainWindow.xaml" this.openqxfile.Click += new System.Windows.RoutedEventHandler(this.openqxfile_Click); #line default #line hidden return; case 14: this.openbjfile = ((Fluent.Button)(target)); #line 337 "..\..\..\MainWindow.xaml" this.openbjfile.Click += new System.Windows.RoutedEventHandler(this.openbjfile_Click); #line default #line hidden return; case 15: this.modifycdldata = ((Fluent.Button)(target)); return; case 16: this.autofitcdldata = ((Fluent.Button)(target)); return; case 17: this.showcdldata = ((Fluent.ToggleButton)(target)); return; case 18: this.checkdatasign = ((Fluent.Button)(target)); #line 345 "..\..\..\MainWindow.xaml" this.checkdatasign.Click += new System.Windows.RoutedEventHandler(this.checkdatasign_Click); #line default #line hidden return; case 19: this.checklogic = ((Fluent.Button)(target)); #line 346 "..\..\..\MainWindow.xaml" this.checklogic.Click += new System.Windows.RoutedEventHandler(this.checklogic_Click); #line default #line hidden return; case 20: this.opentemppdfile = ((Fluent.Button)(target)); #line 349 "..\..\..\MainWindow.xaml" this.opentemppdfile.Click += new System.Windows.RoutedEventHandler(this.opentemppdfile_Click); #line default #line hidden return; case 21: this.opentempqxfile = ((Fluent.Button)(target)); #line 350 "..\..\..\MainWindow.xaml" this.opentempqxfile.Click += new System.Windows.RoutedEventHandler(this.opentempqxfile_Click); #line default #line hidden return; case 22: this.opentempbjfile = ((Fluent.Button)(target)); #line 351 "..\..\..\MainWindow.xaml" this.opentempbjfile.Click += new System.Windows.RoutedEventHandler(this.opentempbjfile_Click); #line default #line hidden return; case 23: this.changeS = ((Fluent.Button)(target)); #line 356 "..\..\..\MainWindow.xaml" this.changeS.Click += new System.Windows.RoutedEventHandler(this.changeS_Click); #line default #line hidden return; case 24: this.changeX = ((Fluent.Button)(target)); #line 357 "..\..\..\MainWindow.xaml" this.changeX.Click += new System.Windows.RoutedEventHandler(this.changeX_Click); #line default #line hidden return; case 25: this.changeSX = ((Fluent.Button)(target)); #line 358 "..\..\..\MainWindow.xaml" this.changeSX.Click += new System.Windows.RoutedEventHandler(this.changeSX_Click); #line default #line hidden return; case 26: this.changemerge = ((Fluent.Button)(target)); #line 361 "..\..\..\MainWindow.xaml" this.changemerge.Click += new System.Windows.RoutedEventHandler(this.changemerge_Click); #line default #line hidden return; case 27: this.exportoto = ((Fluent.Button)(target)); return; case 28: this.ShowDataRibbonTabItem = ((Fluent.RibbonTabItem)(target)); return; case 29: this.LineDataRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 30: this.LoadPDToggleButton = ((Fluent.ToggleButton)(target)); return; case 31: this.LoadQXToggleButton = ((Fluent.ToggleButton)(target)); return; case 32: this.LoadCZToggleButton = ((Fluent.ToggleButton)(target)); return; case 33: this.PositionToggleButton = ((Fluent.ToggleButton)(target)); return; case 34: this.SingleRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 35: this.loadxhdataButton = ((Fluent.ToggleButton)(target)); return; case 36: this.loadxhsdatabutton = ((Fluent.ToggleButton)(target)); return; case 37: this.ModifyStationsignalButton = ((Fluent.Button)(target)); return; case 38: this.signalDataRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 39: this.creatnewsignalButton = ((Fluent.Button)(target)); return; case 40: this.opensignalButton = ((Fluent.Button)(target)); return; case 41: this.SaveStationsignalButton = ((Fluent.Button)(target)); return; case 42: this.SaveothersignalButton = ((Fluent.Button)(target)); return; case 43: this.exportSplitButton = ((Fluent.SplitButton)(target)); return; case 44: this.CheckDataRibbonTabItem = ((Fluent.RibbonTabItem)(target)); return; case 45: this.MuRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 46: this.BulitTrainbutton = ((Fluent.Button)(target)); return; case 47: this.CheckUmDisbutton = ((Fluent.Button)(target)); return; case 48: this.ModifyXinhaoRibbonTabItem = ((Fluent.RibbonTabItem)(target)); return; case 49: this.DetailRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 50: this.LiChenTextBox = ((Fluent.TextBox)(target)); return; case 51: this.LxTextBox = ((Fluent.TextBox)(target)); return; case 52: this.BhTextBox = ((Fluent.TextBox)(target)); return; case 53: this.ModifyRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 54: this.distenceSpinner = ((Fluent.Spinner)(target)); return; case 55: this.CommitButton = ((Fluent.Button)(target)); return; case 56: this.ModifySignalButton = ((Fluent.Button)(target)); return; case 57: this.DeleteSignalButton = ((Fluent.Button)(target)); return; case 58: this.ModifyQjRibbonTabItem = ((Fluent.RibbonTabItem)(target)); return; case 59: this.QjInfoRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 60: this.QidianTextBox = ((Fluent.TextBox)(target)); return; case 61: this.LengthTextBox = ((Fluent.TextBox)(target)); return; case 62: this.ModifyQjRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 63: this.PartLengthTextBox = ((Fluent.TextBox)(target)); return; case 64: this.DivSpinner = ((Fluent.Spinner)(target)); return; case 65: this.DivButton = ((Fluent.Button)(target)); return; case 66: this.InsertButton = ((Fluent.Button)(target)); return; case 67: this.InsertDFXButton = ((Fluent.Button)(target)); return; case 68: this.ModifyDfxRibbonTabItem = ((Fluent.RibbonTabItem)(target)); return; case 69: this.DfxInfoRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 70: this.ModifyDianfxButton = ((Fluent.Button)(target)); return; case 71: this.DeleteDianfxButton = ((Fluent.Button)(target)); return; case 72: this.QujianRibbonContextualTabGroup = ((Fluent.RibbonContextualTabGroup)(target)); return; case 73: this.XinhaoContextualTabGroup = ((Fluent.RibbonContextualTabGroup)(target)); return; case 74: this.DianFxContextualTabGroup = ((Fluent.RibbonContextualTabGroup)(target)); return; case 75: this.infoboxpanel = ((System.Windows.Controls.WrapPanel)(target)); return; case 76: this.DataLlistBox = ((System.Windows.Controls.ListBox)(target)); return; case 77: this.statugrid = ((System.Windows.Controls.Grid)(target)); return; case 78: this.ProcessLabel = ((System.Windows.Controls.Label)(target)); return; case 79: this.ProgressBar = ((System.Windows.Controls.ProgressBar)(target)); return; } this._contentLoaded = true; }
/// <summary> /// Creates the ribbon menu bar for the html editor. /// </summary> /// <param name="ribbonMenu">Main ribbon menu.</param> public override void CreateRibbonMenuBar(Fluent.Ribbon ribbonMenu) { foreach (RibbonContextualTabGroup t in ribbonMenu.ContextualGroups) if (t.Name == "tabGroupHtml") return; // add contextual items for the html editor RibbonContextualTabGroup contextualTG = new RibbonContextualTabGroup(); contextualTG.Name = "tabGroupHtml"; contextualTG.BorderBrush = new SolidColorBrush(Colors.Orange); contextualTG.Background = new SolidColorBrush(Colors.OrangeRed); contextualTG.Header = "Html-Editor"; Binding visibilityBinding = new Binding("ActiveViewModel.SelectedEditorViewModel.IsHtmlEditorViewModelVisible"); visibilityBinding.Converter = new BooleanToVisibilityConverter(); visibilityBinding.Mode = BindingMode.OneWay; contextualTG.SetBinding(RibbonContextualTabGroup.VisibilityProperty, visibilityBinding); // add the html editor tab item RibbonTabItem tab = new RibbonTabItem(); tab.Group = contextualTG; tab.Header = "Design"; // font group box RibbonGroupBox fontGP = new RibbonGroupBox(); fontGP.Header = "Font"; tab.Groups.Add(fontGP); #region Button Bold Fluent.ToggleButton btnBold = new Fluent.ToggleButton(); btnBold.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnBold.SizeDefinition = "Large"; btnBold.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-text-bold-32.png")); btnBold.Text = "Bold"; Binding btnBoldCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlToggleBoldCommand"); btnBoldCmdn.Mode = BindingMode.OneWay; btnBold.SetBinding(Fluent.ToggleButton.CommandProperty, btnBoldCmdn); Binding btnBoldIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionTextBold"); btnBoldIsChecked.Mode = BindingMode.TwoWay; btnBold.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnBoldIsChecked); fontGP.Items.Add(btnBold); #endregion #region Button Italic Fluent.ToggleButton btnItalic = new Fluent.ToggleButton(); btnItalic.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnItalic.SizeDefinition = "Large"; btnItalic.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-text-italic-32.png")); btnItalic.Text = "Italic"; Binding btnItalicCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlToggleItalicCommand"); btnItalicCmdn.Mode = BindingMode.OneWay; btnItalic.SetBinding(Fluent.ToggleButton.CommandProperty, btnItalicCmdn); Binding btnItalicIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionTextItalic"); btnItalicIsChecked.Mode = BindingMode.TwoWay; btnItalic.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnItalicIsChecked); fontGP.Items.Add(btnItalic); #endregion #region Button Underline Fluent.ToggleButton btnUnderline = new Fluent.ToggleButton(); btnUnderline.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnUnderline.SizeDefinition = "Large"; btnUnderline.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-text-underline-32.png")); btnUnderline.Text = "Underline"; Binding btnUnderlineCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlToggleUnderlineCommand"); btnUnderlineCmdn.Mode = BindingMode.OneWay; btnUnderline.SetBinding(Fluent.ToggleButton.CommandProperty, btnUnderlineCmdn); Binding btnUnderlineIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionTextUnderlined"); btnUnderlineIsChecked.Mode = BindingMode.TwoWay; btnUnderline.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnUnderlineIsChecked); fontGP.Items.Add(btnUnderline); #endregion // format group box RibbonGroupBox formatGP = new RibbonGroupBox(); formatGP.Header = "Format"; tab.Groups.Add(formatGP); #region Button Decrease Indent Fluent.Button btnDecIndent = new Fluent.Button(); btnDecIndent.SizeDefinition = "Large"; btnDecIndent.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-indent-less-32.png")); btnDecIndent.Text = "Decrease Indent"; Binding btnDecIndentCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlIndentLessCommand"); btnDecIndentCmdn.Mode = BindingMode.OneWay; btnDecIndent.SetBinding(Fluent.Button.CommandProperty, btnDecIndentCmdn); formatGP.Items.Add(btnDecIndent); #endregion #region Button Increase Indent Fluent.Button btnIncIndent = new Fluent.Button(); btnIncIndent.SizeDefinition = "Large"; btnIncIndent.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-indent-more-32.png")); btnIncIndent.Text = "Increase Indent"; Binding btnIncIndentCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlIndentMoreCommand"); btnIncIndentCmdn.Mode = BindingMode.OneWay; btnIncIndent.SetBinding(Fluent.Button.CommandProperty, btnIncIndentCmdn); formatGP.Items.Add(btnIncIndent); #endregion // alignment group box RibbonGroupBox alignGP = new RibbonGroupBox(); alignGP.Header = "Alignment"; tab.Groups.Add(alignGP); #region Button Align Left Fluent.ToggleButton btnLeft = new Fluent.ToggleButton(); btnLeft.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnLeft.SizeDefinition = "Large"; btnLeft.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-justify-left-32.png")); btnLeft.Text = "Left"; Binding btnLeftCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlAlignLeftCommand"); btnLeftCmdn.Mode = BindingMode.OneWay; btnLeft.SetBinding(Fluent.ToggleButton.CommandProperty, btnLeftCmdn); Binding btnLeftIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionAlignedLeft"); btnLeftIsChecked.Mode = BindingMode.TwoWay; btnLeft.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnLeftIsChecked); alignGP.Items.Add(btnLeft); #endregion #region Button Align Center Fluent.ToggleButton btnCenter = new Fluent.ToggleButton(); btnCenter.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnCenter.SizeDefinition = "Large"; btnCenter.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-justify-center-32.png")); btnCenter.Text = "Center"; Binding btnCenterCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlAlignCenterCommand"); btnCenterCmdn.Mode = BindingMode.OneWay; btnCenter.SetBinding(Fluent.ToggleButton.CommandProperty, btnCenterCmdn); Binding btnCenterIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionAlignedCenter"); btnCenterIsChecked.Mode = BindingMode.TwoWay; btnCenter.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnCenterIsChecked); alignGP.Items.Add(btnCenter); #endregion #region Button Align Right Fluent.ToggleButton btnRight = new Fluent.ToggleButton(); btnRight.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnRight.SizeDefinition = "Large"; btnRight.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-justify-right-32.png")); btnRight.Text = "Right"; Binding btnRightCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlAlignRightCommand"); btnRightCmdn.Mode = BindingMode.OneWay; btnRight.SetBinding(Fluent.ToggleButton.CommandProperty, btnRightCmdn); Binding btnRightIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionAlignedRight"); btnRightIsChecked.Mode = BindingMode.TwoWay; btnRight.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnRightIsChecked); alignGP.Items.Add(btnRight); #endregion #region Button Align Justify Fluent.ToggleButton btnJustify = new Fluent.ToggleButton(); btnJustify.Margin = new System.Windows.Thickness(2, 0, 0, 0); btnJustify.SizeDefinition = "Large"; btnJustify.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/format-justify-fill-32.png")); btnJustify.Text = "Justify"; Binding btnJustifyCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlAlignJustifyCommand"); btnJustifyCmdn.Mode = BindingMode.OneWay; btnJustify.SetBinding(Fluent.ToggleButton.CommandProperty, btnJustifyCmdn); Binding btnJustifyIsChecked = new Binding("ActiveViewModel.SelectedEditorViewModel.IsSelectionAlignedJustified"); btnJustifyIsChecked.Mode = BindingMode.TwoWay; btnJustify.SetBinding(Fluent.ToggleButton.IsCheckedProperty, btnJustifyIsChecked); alignGP.Items.Add(btnJustify); #endregion // insert group box RibbonGroupBox insertGP = new RibbonGroupBox(); insertGP.Header = "Insert"; tab.Groups.Add(insertGP); #region Button Hyperlink Fluent.Button btnHyperlink = new Fluent.Button(); btnHyperlink.SizeDefinition = "Large"; btnHyperlink.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/Hyperlink.ico")); btnHyperlink.Text = "Hyperlink"; Binding btnHyperlinkCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlInsertHyperlinkCommand"); btnHyperlinkCmdn.Mode = BindingMode.OneWay; btnHyperlink.SetBinding(Fluent.Button.CommandProperty, btnHyperlinkCmdn); insertGP.Items.Add(btnHyperlink); #endregion #region Button Image Fluent.Button btnImage = new Fluent.Button(); btnImage.SizeDefinition = "Large"; btnImage.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/insert-image-32.png")); btnImage.Text = "Image"; Binding btnImageCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlInsertImageCommand"); btnImageCmdn.Mode = BindingMode.OneWay; btnImage.SetBinding(Fluent.Button.CommandProperty, btnImageCmdn); insertGP.Items.Add(btnImage); #endregion #region Button List Fluent.SplitButton btnList = new SplitButton(); btnList.SizeDefinition = "Large"; btnList.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/list-32.png")); btnList.Text = "List"; insertGP.Items.Add(btnList); Fluent.Button btnBulletedList = new Fluent.Button(); btnBulletedList.SizeDefinition = "Middle"; btnBulletedList.Icon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/List_BulletsHS.png")); btnBulletedList.Text = "Bulleted List"; Binding btnBulletedListCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlInsertBulletListCommand"); btnBulletedListCmdn.Mode = BindingMode.OneWay; btnBulletedList.SetBinding(Fluent.Button.CommandProperty, btnBulletedListCmdn); btnList.Items.Add(btnBulletedList); Fluent.Button btnNumberedList = new Fluent.Button(); btnNumberedList.SizeDefinition = "Middle"; btnNumberedList.Icon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/List_NumberedHS.png")); btnNumberedList.Text = "Numbered List"; Binding btnNumberedListCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlInsertNumberListCommand"); btnNumberedListCmdn.Mode = BindingMode.OneWay; btnNumberedList.SetBinding(Fluent.Button.CommandProperty, btnNumberedListCmdn); btnList.Items.Add(btnNumberedList); #endregion #region Button Table Fluent.Button btnTable = new Fluent.Button(); btnTable.SizeDefinition = "Large"; btnTable.LargeIcon = new System.Windows.Media.Imaging.BitmapImage( new Uri("pack://application:,,,/Tum.PDE.ToolFramework.Modeling.Visualization.VMXExtensions;component/Resources/Images/HtmlEditor/table-32.png")); btnTable.Text = "Table"; Binding btnTableCmdn = new Binding("ActiveViewModel.SelectedEditorViewModel.HtmlInsertTableCommand"); btnTableCmdn.Mode = BindingMode.OneWay; btnTable.SetBinding(Fluent.Button.CommandProperty, btnTableCmdn); insertGP.Items.Add(btnTable); #endregion ribbonMenu.ContextualGroups.Add(contextualTG); ribbonMenu.Tabs.Add(tab); /* <fluent:RibbonGroupBox Header="Font"> <fluent:ToggleButton Text="Bold" Command="{Binding Path=HtmlToggleBoldCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-text-bold-32.png" IsChecked="{Binding Path=IsSelectionTextBold, Mode=TwoWay}" SizeDefinition="Large"/> <fluent:ToggleButton Text="Italic" Command="{Binding Path=HtmlToggleItalicCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-text-italic-32.png" IsChecked="{Binding Path=IsSelectionTextItalic, Mode=TwoWay}" SizeDefinition="Large"/> <fluent:ToggleButton Text="Underline" Command="{Binding Path=HtmlToggleUnderlineCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-text-underline-32.png" IsChecked="{Binding Path=IsSelectionTextUnderlined, Mode=TwoWay}" SizeDefinition="Large"/> </fluent:RibbonGroupBox> <fluent:RibbonGroupBox Header="Format"> <fluent:Button Text="Decrease Indent" Command="{Binding Path=HtmlIndentLessCommand}" LargeIcon="/Resources/Images/HtmlEditor/format-indent-less-32.png" SizeDefinition="Large"/> <fluent:Button Text="Increase Indent" Command="{Binding Path=HtmlIndentMoreCommand}" LargeIcon="/Resources/Images/HtmlEditor/format-indent-more-32.png" SizeDefinition="Large"/> </fluent:RibbonGroupBox> <fluent:RibbonGroupBox Header="Font"> <fluent:ToggleButton Text="Left" Command="{Binding Path=HtmlAlignLeftCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-justify-left-32.png" IsChecked="{Binding Path=IsSelectionAlignedLeft, Mode=TwoWay}" SizeDefinition="Large"/> <fluent:ToggleButton Text="Center" Command="{Binding Path=HtmlAlignCenterCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-justify-center-32.png" IsChecked="{Binding Path=IsSelectionAlignedCenter, Mode=TwoWay}" SizeDefinition="Large"/> <fluent:ToggleButton Text="Right" Command="{Binding Path=HtmlAlignRightCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-justify-right-32.png" IsChecked="{Binding Path=IsSelectionAlignedRight, Mode=TwoWay}" SizeDefinition="Large"/> <fluent:ToggleButton Text="Justify" Command="{Binding Path=HtmlAlignJustifyCommand}" Margin="2,0,0,0" LargeIcon="/Resources/Images/HtmlEditor/format-justify-fill-32.png" IsChecked="{Binding Path=IsSelectionAlignedJustified, Mode=TwoWay}" SizeDefinition="Large"/> </fluent:RibbonGroupBox> <fluent:RibbonGroupBox Header="Insert"> <fluent:Button Text="Hyperlink" Command="{Binding Path=HtmlInsertHyperlinkCommand}" LargeIcon="/Resources/Images/Ico/Hyperlink.ico" SizeDefinition="Large"/> <fluent:Button Text="Image" Command="{Binding Path=HtmlInsertImageCommand}" LargeIcon="/Resources/Images/HtmlEditor/insert-image-32.png" SizeDefinition="Large"/> <fluent:SplitButton Text="List" LargeIcon="/Resources/Images/HtmlEditor/list-32.png" SizeDefinition="Large"> <fluent:Button Text="Bulleted List" Command="{Binding Path=HtmlInsertBulletListCommand}" Icon="/Resources/Images/HtmlEditor/List_BulletsHS.png" SizeDefinition="Middle"/> <fluent:Button Text="Numbered List" Command="{Binding Path=HtmlInsertNumberListCommand}" Icon="/Resources/Images/HtmlEditor/List_NumberedHS.png" SizeDefinition="Middle"/> </fluent:SplitButton> <fluent:Button Text="Table" Command="{Binding Path=HtmlInsertTableCommand}" LargeIcon="/Resources/Images/HtmlEditor/table-32.png" SizeDefinition="Large"/> </fluent:RibbonGroupBox> */ }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.fmMain = ((LEDX.MWin)(target)); return; case 2: this.ribbon = ((Fluent.Ribbon)(target)); #line 57 "..\..\MainWindow.xaml" this.ribbon.SelectedTabChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Ribbon_SelectedTabChanged); #line default #line hidden return; case 3: this.btNewProj = ((Fluent.Button)(target)); return; case 4: this.btOpenProj = ((Fluent.Button)(target)); return; case 5: this.btSaveProj = ((Fluent.Button)(target)); return; case 6: this.tbEdit = ((Fluent.RibbonTabItem)(target)); return; case 7: this.btUndo = ((Fluent.SplitButton)(target)); return; case 8: this.btPasteFram = ((Fluent.SplitButton)(target)); return; case 9: this.rgbContrProp = ((Fluent.RibbonGroupBox)(target)); return; case 10: this.spAddNew = ((Fluent.SplitButton)(target)); return; case 11: this.btDel = ((Fluent.MenuItem)(target)); return; case 12: this.tbConName = ((Fluent.TextBox)(target)); return; case 13: this.tbConNumb = ((Fluent.Spinner)(target)); return; case 14: this.tbConButt = ((Fluent.Spinner)(target)); return; case 15: this.rgbFrameProp = ((Fluent.RibbonGroupBox)(target)); return; case 16: this.spTime = ((Fluent.Spinner)(target)); return; case 17: this.btCopyFram = ((Fluent.Button)(target)); return; case 18: this.btCutFram = ((Fluent.Button)(target)); return; case 19: this.btDelFram = ((Fluent.Button)(target)); return; case 20: this.btToSample = ((Fluent.Button)(target)); return; case 21: this.spbtFSet = ((Fluent.SplitButton)(target)); #line 179 "..\..\MainWindow.xaml" this.spbtFSet.DropDownClosed += new System.EventHandler(this.SpbtFSet_DropDownClosed); #line default #line hidden return; case 22: this.rgbColorProp = ((Fluent.RibbonGroupBox)(target)); return; case 23: this.btBegColor = ((Fluent.Button)(target)); return; case 24: this.rctBegClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 25: this.btCopyColor = ((Fluent.Button)(target)); return; case 26: this.btGetColor = ((Fluent.Button)(target)); return; case 27: this.btEndColor = ((Fluent.Button)(target)); return; case 28: this.rctEndClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 29: this.btCopy = ((Fluent.Button)(target)); return; case 30: this.grSampl = ((Fluent.InRibbonGallery)(target)); return; case 31: this.tbPalyer = ((Fluent.RibbonTabItem)(target)); return; case 32: this.rgbPropLayer = ((Fluent.RibbonGroupBox)(target)); return; case 33: this.btLayerDown = ((Fluent.Button)(target)); return; case 34: this.btLayerTop = ((Fluent.Button)(target)); return; case 35: this.btDelLay = ((Fluent.Button)(target)); return; case 36: this.rgbPropPng = ((Fluent.RibbonGroupBox)(target)); return; case 37: this.cbController = ((Fluent.ComboBox)(target)); return; case 38: this.lgWidth = ((Fluent.TextBox)(target)); return; case 39: this.lgHeight = ((Fluent.TextBox)(target)); return; case 40: this.rgbPropText = ((Fluent.RibbonGroupBox)(target)); return; case 41: this.lbtemTest = ((System.Windows.Controls.Label)(target)); return; case 42: this.temTest = ((LEDX.Components.MultiLineTextEditor)(target)); return; case 43: this.spTextSize = ((Fluent.Spinner)(target)); return; case 44: this.cbFontFamaly = ((Fluent.ComboBox)(target)); return; case 45: this.rctTextClolor = ((System.Windows.Shapes.Rectangle)(target)); return; case 46: this.tbFlash = ((Fluent.RibbonTabItem)(target)); return; case 47: this.lbPort = ((System.Windows.Controls.Label)(target)); return; case 48: this.cbComName = ((Fluent.ComboBox)(target)); return; case 49: this.lbSpeed = ((System.Windows.Controls.Label)(target)); return; case 50: this.cbComRate = ((Fluent.ComboBox)(target)); return; case 51: this.btRefrPorts = ((Fluent.Button)(target)); return; case 52: this.tbSync = ((Fluent.ToggleButton)(target)); return; case 53: this.tgbShowLog = ((Fluent.ToggleButton)(target)); return; case 54: this.spProgress = ((System.Windows.Controls.StackPanel)(target)); return; case 55: this.uiScaleSlider = ((System.Windows.Controls.Slider)(target)); #line 531 "..\..\MainWindow.xaml" this.uiScaleSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.uiScaleSlider_ValueChanged); #line default #line hidden return; case 56: this.uiMan = ((LEDX.Components.PlayScale)(target)); return; case 57: this.svSearch = ((System.Windows.Controls.ScrollViewer)(target)); return; case 58: this.sldTime = ((LEDX.Components.TimeSlider)(target)); #line 561 "..\..\MainWindow.xaml" this.sldTime.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.sld_ValueChanged); #line default #line hidden return; case 59: this.scroll = ((System.Windows.Controls.ScrollViewer)(target)); return; case 60: this.icContr = ((System.Windows.Controls.ItemsControl)(target)); return; case 61: this.svTracks = ((System.Windows.Controls.ScrollViewer)(target)); return; case 62: this.icTrack = ((System.Windows.Controls.ItemsControl)(target)); return; case 63: this.iCanv = ((LEDX.Components.IncRender)(target)); #line 598 "..\..\MainWindow.xaml" this.iCanv.SelectionChanged += new System.EventHandler(this.iCanv_SelectionChanged); #line default #line hidden return; case 64: this.mainScroller = ((System.Windows.Controls.ScrollViewer)(target)); #line 607 "..\..\MainWindow.xaml" this.mainScroller.ScrollChanged += new System.Windows.Controls.ScrollChangedEventHandler(this.mainScroller_ScrollChanged); #line default #line hidden return; case 65: this.svLog = ((System.Windows.Controls.ScrollViewer)(target)); return; case 66: this.tbLog = ((System.Windows.Controls.TextBox)(target)); return; } this._contentLoaded = true; }
/// <summary> /// Create ribbon menus. /// </summary> /// <param name="ribbonMenu"></param> public override void CreateRibbonMenu(Ribbon ribbonMenu) { base.CreateRibbonMenu(ribbonMenu); // in case the tab group is used for multiple vms, prevent multiple tabs beeing created foreach (Fluent.RibbonContextualTabGroup t in ribbonMenu.ContextualGroups) if (t.Name == "tabGroupExamplePlugin") { exampleTabGroup = t; return; } // contextual tab, which should only be visible when the example diagram surface is active exampleTabGroup = new RibbonContextualTabGroup(); exampleTabGroup.Header = "Example Tab Group"; exampleTabGroup.BorderBrush = new SolidColorBrush(System.Windows.Media.Colors.LightBlue); exampleTabGroup.Background = new SolidColorBrush(System.Windows.Media.Colors.LightBlue); exampleTabGroup.Name = "tabGroupExamplePlugin"; // create ribbon bar and associate it with the contextual group RibbonTabItem exampleTab = new RibbonTabItem(); exampleTab.Header = "Example View Operations"; exampleTab.Group = exampleTabGroup; // Analyze group RibbonGroupBox analyzeGroup = new RibbonGroupBox(); analyzeGroup.Header = "Analyze"; exampleTab.Groups.Add(analyzeGroup); Fluent.Button buttonAnalyze = new Fluent.Button(); buttonAnalyze.Text = "Analyze"; buttonAnalyze.Command = this.command; buttonAnalyze.Size = RibbonControlSize.Large; buttonAnalyze.LargeIcon = GetImage("prepare_32.png"); analyzeGroup.Items.Add(buttonAnalyze); // View group RibbonGroupBox viewGroup = new RibbonGroupBox(); viewGroup.Header = "View"; exampleTab.Groups.Add(viewGroup); Fluent.ToggleButton buttonTree = new Fluent.ToggleButton(); buttonTree.Text = "Tree"; buttonTree.LargeIcon = GetImage("tree-32.png"); viewGroup.Items.Add(buttonTree); Fluent.ToggleButton buttonTable = new Fluent.ToggleButton(); buttonTable.Text = "Table"; buttonTable.LargeIcon = GetImage("table-32.png"); viewGroup.Items.Add(buttonTable); // Export group RibbonGroupBox exportGroup = new RibbonGroupBox(); exportGroup.Header = "Export"; exampleTab.Groups.Add(exportGroup); Fluent.Button buttonExportCSV = new Fluent.Button(); buttonExportCSV.Text = "Export as CSV-File"; buttonExportCSV.Size = RibbonControlSize.Large; buttonExportCSV.LargeIcon = GetImage("csv_32x32.png"); buttonExportCSV.Command = this.command; exportGroup.Items.Add(buttonExportCSV); Fluent.Button buttonExportHTML = new Fluent.Button(); buttonExportHTML.Text = "Export as HTML Website"; buttonExportHTML.Size = RibbonControlSize.Large; buttonExportHTML.LargeIcon = GetImage("html_32x32.png"); buttonExportHTML.Command = this.command; exportGroup.Items.Add(buttonExportHTML); Fluent.Button buttonExportPDF = new Fluent.Button(); buttonExportPDF.Text = "Export as PDF Document"; buttonExportPDF.Size = RibbonControlSize.Large; buttonExportPDF.LargeIcon = GetImage("pdf_32x32.png"); buttonExportPDF.Command = this.command; exportGroup.Items.Add(buttonExportPDF); ribbonMenu.ContextualGroups.Add(exampleTabGroup); ribbonMenu.Tabs.Add(exampleTab); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.OpenCommand = ((System.Windows.Input.CommandBinding)(target)); #line 28 "..\..\..\MainWindow.xaml" this.OpenCommand.CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.OpenCommandCanExecute); #line default #line hidden #line 28 "..\..\..\MainWindow.xaml" this.OpenCommand.Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.OpenCommandExecuted); #line default #line hidden return; case 2: this.NewCommand = ((System.Windows.Input.CommandBinding)(target)); #line 29 "..\..\..\MainWindow.xaml" this.NewCommand.CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.NewCommandCanExecute); #line default #line hidden #line 29 "..\..\..\MainWindow.xaml" this.NewCommand.Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.NewCommandExecuted); #line default #line hidden return; case 3: this.SaveCommand = ((System.Windows.Input.CommandBinding)(target)); #line 30 "..\..\..\MainWindow.xaml" this.SaveCommand.CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SaveCommandCanExecute); #line default #line hidden #line 30 "..\..\..\MainWindow.xaml" this.SaveCommand.Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SaveCommandExecuted); #line default #line hidden return; case 4: this.SaveAsCommand = ((System.Windows.Input.CommandBinding)(target)); #line 31 "..\..\..\MainWindow.xaml" this.SaveAsCommand.CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SaveAsCommandCanExecute); #line default #line hidden #line 31 "..\..\..\MainWindow.xaml" this.SaveAsCommand.Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SaveAsCommandExecuted); #line default #line hidden return; case 5: #line 32 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RecentObjectSelected); #line default #line hidden return; case 6: this.AddDivisionCommand = ((System.Windows.Input.CommandBinding)(target)); #line 34 "..\..\..\MainWindow.xaml" this.AddDivisionCommand.CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.AddDivisionCommandCanExecute); #line default #line hidden #line 34 "..\..\..\MainWindow.xaml" this.AddDivisionCommand.Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.AddDivisionCommandExecuted); #line default #line hidden return; case 7: this.ApplicationRibbon = ((Fluent.Ribbon)(target)); return; case 8: this.FileMenu = ((Fluent.Backstage)(target)); return; case 9: this.MenuRecentItem = ((Fluent.BackstageTabItem)(target)); return; case 10: this.MenuContextHeaderDivisible = ((Fluent.RibbonContextualTabGroup)(target)); return; case 11: this.MenuContextFillable = ((Fluent.RibbonContextualTabGroup)(target)); return; case 12: this.TabHome = ((Fluent.RibbonTabItem)(target)); return; case 13: this.ButtonPaste = ((Fluent.SplitButton)(target)); return; case 14: this.ButtonCut = ((Fluent.Button)(target)); return; case 15: this.ButtonCopy = ((Fluent.Button)(target)); return; case 16: this.TabDivision = ((Fluent.RibbonTabItem)(target)); return; case 17: this.GroupDivision = ((Fluent.RibbonGroupBox)(target)); return; case 18: this.ButtonNoDivision = ((Fluent.Button)(target)); return; case 19: this.ButtonFess = ((Fluent.Button)(target)); return; case 20: this.ButtonPale = ((Fluent.Button)(target)); return; case 21: this.ButtonBend = ((Fluent.Button)(target)); return; case 22: this.ButtonBendSinister = ((Fluent.Button)(target)); return; case 23: this.GroupAdvancedDivision = ((Fluent.RibbonGroupBox)(target)); return; case 24: this.ButtonSaltire = ((Fluent.Button)(target)); return; case 25: this.ButtonPartyCross = ((Fluent.Button)(target)); return; case 26: this.ButtonPall = ((Fluent.Button)(target)); return; case 27: this.ButtonTiercedBend = ((Fluent.Button)(target)); return; case 28: this.ButtonTiercedBendSinister = ((Fluent.Button)(target)); return; case 29: this.ButtonTiercedPale = ((Fluent.Button)(target)); return; case 30: this.ButtonTiercedFess = ((Fluent.Button)(target)); return; case 31: this.TabOrdinaries = ((Fluent.RibbonTabItem)(target)); return; case 32: this.GroupHonourableOrdinaries = ((Fluent.RibbonGroupBox)(target)); return; case 33: this.GroupSubOrdinaries = ((Fluent.RibbonGroupBox)(target)); return; case 34: this.TabTinctures = ((Fluent.RibbonTabItem)(target)); return; case 35: this.GroupLabelBasicTinctures = ((Fluent.RibbonGroupBox)(target)); return; case 36: this.ButtonOr = ((Fluent.Button)(target)); return; case 37: this.ButtonArgent = ((Fluent.Button)(target)); return; case 38: this.ButtonAzure = ((Fluent.Button)(target)); return; case 39: this.ButtonVert = ((Fluent.Button)(target)); return; case 40: this.ButtonGules = ((Fluent.Button)(target)); return; case 41: this.ButtonSable = ((Fluent.Button)(target)); return; case 42: this.GroupLabelModernTinctures = ((Fluent.RibbonGroupBox)(target)); return; case 43: this.GroupLabelFurs = ((Fluent.RibbonGroupBox)(target)); return; case 44: this.GroupLabelCustomTinctures = ((Fluent.RibbonGroupBox)(target)); return; case 45: this.StatusBar = ((System.Windows.Controls.Primitives.StatusBar)(target)); return; case 46: this.MainFrame = ((GBlason.Control.Aggregate.CustomGUI)(target)); return; } this._contentLoaded = true; }
/// <summary> /// Removes tab item /// </summary> /// <param name="item">Ribbon tab item</param> internal void RemoveTabItem(RibbonTabItem item) { Items.Remove(item); UpdateGroupBorders(); }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.ThisWindow = ((KtvStudio.MainWindow)(target)); return; case 2: #line 65 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoNew_CanExecute); #line default #line hidden #line 66 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoNew_Executed); #line default #line hidden return; case 3: #line 68 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoEdit_CanExecute); #line default #line hidden #line 69 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoEdit_Executed); #line default #line hidden return; case 4: #line 71 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoEditCancel_CanExecute); #line default #line hidden #line 72 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoEditCancel_Executed); #line default #line hidden return; case 5: #line 74 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoRemove_CanExecute); #line default #line hidden #line 75 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoRemove_Executed); #line default #line hidden return; case 6: #line 77 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoSave_CanExecute); #line default #line hidden #line 78 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoSave_Executed); #line default #line hidden return; case 7: #line 80 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.RoomInfoFresh_CanExecute); #line default #line hidden #line 81 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.RoomInfoFresh_Executed); #line default #line hidden return; case 8: #line 84 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoNew_CanExecute); #line default #line hidden #line 85 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoNew_Executed); #line default #line hidden return; case 9: #line 87 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoEdit_CanExecute); #line default #line hidden #line 88 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoEdit_Executed); #line default #line hidden return; case 10: #line 90 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoEditCancel_CanExecute); #line default #line hidden #line 91 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoEditCancel_Executed); #line default #line hidden return; case 11: #line 93 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoRemove_CanExecute); #line default #line hidden #line 94 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoRemove_Executed); #line default #line hidden return; case 12: #line 96 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoSave_CanExecute); #line default #line hidden #line 97 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoSave_Executed); #line default #line hidden return; case 13: #line 99 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.SingerInfoFresh_CanExecute); #line default #line hidden #line 100 "..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.SingerInfoFresh_Executed); #line default #line hidden return; case 14: this.Menu = ((Fluent.Ribbon)(target)); return; case 15: this.Home = ((Fluent.RibbonTabItem)(target)); return; case 16: this.InfoManage = ((Fluent.RibbonTabItem)(target)); return; case 17: this.SongInfoManage = ((Fluent.RibbonTabItem)(target)); return; case 18: this.SingerManage = ((Fluent.RibbonTabItem)(target)); return; case 19: this.DownloadManage = ((Fluent.RibbonTabItem)(target)); return; case 20: this.DataAnalysisManage = ((Fluent.RibbonTabItem)(target)); return; case 21: this.RoomTaskTabItem = ((System.Windows.Controls.TabItem)(target)); return; case 22: this.RoomPriceTabItem = ((MahApps.Metro.Controls.MetroTabItem)(target)); return; case 23: #line 402 "..\..\MainWindow.xaml" ((MahApps.Metro.Controls.MetroAnimatedTabControl)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.RoomTaskRoomTypeTabControl_SelectionChanged); #line default #line hidden return; case 24: #line 420 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.RoomTaskDataGrid_SelectionChanged); #line default #line hidden #line 421 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.RoomTaskDataGrid_MouseDoubleClick); #line default #line hidden return; case 25: #line 497 "..\..\MainWindow.xaml" ((MahApps.Metro.Controls.MetroAnimatedTabControl)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.RoomTypeTabControl_SelectionChanged); #line default #line hidden return; case 26: #line 515 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.RoomInfoSourceDataGrid_MouseDoubleClick); #line default #line hidden #line 516 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DataGrid_SelectionChanged); #line default #line hidden return; case 27: this.SongManageUc = ((KtvStudio.Views.SongManageUc)(target)); return; case 28: #line 567 "..\..\MainWindow.xaml" ((MahApps.Metro.Controls.MetroAnimatedTabControl)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SingerAreaFilterTabControl_SelectionChanged); #line default #line hidden return; case 29: #line 586 "..\..\MainWindow.xaml" ((MahApps.Metro.Controls.MetroAnimatedTabControl)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SingerInitialFilterTabControl_SelectionChanged); #line default #line hidden return; case 30: #line 624 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.SingerInfoSourceDataGrid_MouseDoubleClick); #line default #line hidden #line 625 "..\..\MainWindow.xaml" ((System.Windows.Controls.DataGrid)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SingerInfoDataGrid_SelectionChanged); #line default #line hidden return; case 31: this.DownloadRatioProgressBar = ((System.Windows.Controls.ProgressBar)(target)); return; case 32: this.DownloadRatioLabel = ((System.Windows.Controls.Label)(target)); return; case 33: this.DataAnalysisManageUc = ((KtvStudio.Views.DataAnalysisManageUc)(target)); return; } this._contentLoaded = true; }
public void AddRibbonItem(RibbonTabItem ribbonItem,bool isActive) { regionManager.Regions[RegionNames.Ribbon].Add(ribbonItem); if(isActive) (ribbonItem.Parent as RibbonTabControl).SelectedItem = ribbonItem; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.ribbon = ((Fluent.Ribbon)(target)); return; case 2: this.homeTabItem = ((Fluent.RibbonTabItem)(target)); return; case 3: this.themesGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 4: this.silverThemeBtn = ((Fluent.Button)(target)); #line 60 "..\..\MainWindowContent.xaml" this.silverThemeBtn.Click += new System.Windows.RoutedEventHandler(this.silverThemeBtn_Click); #line default #line hidden return; case 5: this.blackThemeBtn = ((Fluent.Button)(target)); #line 63 "..\..\MainWindowContent.xaml" this.blackThemeBtn.Click += new System.Windows.RoutedEventHandler(this.blackThemeBtn_Click); #line default #line hidden return; case 6: this.blueThemeBtn = ((Fluent.Button)(target)); #line 66 "..\..\MainWindowContent.xaml" this.blueThemeBtn.Click += new System.Windows.RoutedEventHandler(this.blueThemeBtn_Click); #line default #line hidden return; case 7: this.DontUseDwm = ((Fluent.CheckBox)(target)); #line 67 "..\..\MainWindowContent.xaml" this.DontUseDwm.Click += new System.Windows.RoutedEventHandler(this.DontUseDwm_Click); #line default #line hidden return; case 8: this.memoryGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 9: this.releaseSelfMmryBtn = ((Fluent.Button)(target)); return; case 10: this.releaseAllMmryBtn = ((Fluent.Button)(target)); return; case 11: this.ViewTabItem = ((Fluent.RibbonTabItem)(target)); return; case 12: this.displayRangeGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 13: this.imageGallery = ((Hywire.ImageProcessing.ImageDisplayer.View.ImageGallery)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: #line 9 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.RibbonWindow_KeyUp); #line default #line hidden #line 12 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.RibbonWindow_PreviewMouseDown); #line default #line hidden #line 14 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); #line default #line hidden #line 15 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).Closed += new System.EventHandler(this.Window_Closed); #line default #line hidden #line 18 "..\..\..\MainWindow.xaml" ((jg.Editor.MainWindow)(target)).Deactivated += new System.EventHandler(this.RibbonWindow_Deactivated); #line default #line hidden return; case 12: #line 325 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 325 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 13: #line 326 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 326 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 14: #line 327 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 327 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 15: #line 328 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 328 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 16: #line 329 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 329 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 17: #line 330 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 330 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 18: #line 331 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 331 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 19: #line 332 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_CanExecute); #line default #line hidden #line 332 "..\..\..\MainWindow.xaml" ((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_Executed); #line default #line hidden return; case 20: this.col1 = ((System.Windows.Controls.ColumnDefinition)(target)); return; case 21: this.col5 = ((System.Windows.Controls.ColumnDefinition)(target)); return; case 22: this.rowStage = ((System.Windows.Controls.RowDefinition)(target)); return; case 23: this.row4 = ((System.Windows.Controls.RowDefinition)(target)); return; case 24: this.ribbon = ((Fluent.Ribbon)(target)); return; case 25: this.btnCreate = ((Fluent.Button)(target)); #line 377 "..\..\..\MainWindow.xaml" this.btnCreate.Click += new System.Windows.RoutedEventHandler(this.btnCreate_Click); #line default #line hidden return; case 26: this.btnLoad = ((Fluent.Button)(target)); #line 380 "..\..\..\MainWindow.xaml" this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click); #line default #line hidden return; case 27: #line 383 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_8); #line default #line hidden return; case 28: #line 387 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_7); #line default #line hidden return; case 29: #line 421 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.btnAddKey_Click); #line default #line hidden return; case 30: this.FileName = ((System.Windows.Controls.TextBlock)(target)); return; case 31: this.UpdateTime = ((System.Windows.Controls.TextBlock)(target)); return; case 32: this.CreateTime = ((System.Windows.Controls.TextBlock)(target)); return; case 33: this.txtWidth = ((System.Windows.Controls.TextBox)(target)); #line 478 "..\..\..\MainWindow.xaml" this.txtWidth.LostFocus += new System.Windows.RoutedEventHandler(this.TextBox_LostFocus); #line default #line hidden #line 478 "..\..\..\MainWindow.xaml" this.txtWidth.TextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_TextInput); #line default #line hidden return; case 34: this.txtHeight = ((System.Windows.Controls.TextBox)(target)); #line 482 "..\..\..\MainWindow.xaml" this.txtHeight.LostFocus += new System.Windows.RoutedEventHandler(this.TextBox_LostFocus); #line default #line hidden #line 482 "..\..\..\MainWindow.xaml" this.txtHeight.TextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_TextInput); #line default #line hidden return; case 35: this.colorPicker = ((Xceed.Wpf.Toolkit.ColorPicker)(target)); return; case 36: this.UpdateUser = ((System.Windows.Controls.TextBlock)(target)); return; case 37: this.CreateUser = ((System.Windows.Controls.TextBlock)(target)); return; case 38: #line 571 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Window_Closed); #line default #line hidden return; case 39: this.tabItem1 = ((Fluent.RibbonTabItem)(target)); return; case 40: this.OperationGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 41: this.btnPageAdd = ((Fluent.Button)(target)); #line 601 "..\..\..\MainWindow.xaml" this.btnPageAdd.Click += new System.Windows.RoutedEventHandler(this.btnPageAdd_Click); #line default #line hidden return; case 42: #line 607 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click); #line default #line hidden return; case 43: #line 608 "..\..\..\MainWindow.xaml" ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click); #line default #line hidden return; case 44: this.btnPageDel = ((Fluent.Button)(target)); #line 634 "..\..\..\MainWindow.xaml" this.btnPageDel.Click += new System.Windows.RoutedEventHandler(this.btnPageDel_Click); #line default #line hidden return; case 45: this.btnUndo = ((Fluent.Button)(target)); #line 650 "..\..\..\MainWindow.xaml" this.btnUndo.Click += new System.Windows.RoutedEventHandler(this.btnUndo_Click); #line default #line hidden return; case 46: this.btnRedo = ((Fluent.Button)(target)); #line 665 "..\..\..\MainWindow.xaml" this.btnRedo.Click += new System.Windows.RoutedEventHandler(this.btnRedo_Click); #line default #line hidden return; case 47: this.toggleButton1 = ((Fluent.SplitButton)(target)); return; case 48: #line 689 "..\..\..\MainWindow.xaml" ((Fluent.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 49: #line 690 "..\..\..\MainWindow.xaml" ((Fluent.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 50: #line 691 "..\..\..\MainWindow.xaml" ((Fluent.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 51: #line 692 "..\..\..\MainWindow.xaml" ((Fluent.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.AlignButton_Click); #line default #line hidden return; case 52: this.q = ((Fluent.RibbonGroupBox)(target)); return; case 53: this.btnCut = ((Fluent.Button)(target)); #line 708 "..\..\..\MainWindow.xaml" this.btnCut.Click += new System.Windows.RoutedEventHandler(this.btnCut_Click); #line default #line hidden return; case 54: this.btnCopy = ((Fluent.Button)(target)); #line 725 "..\..\..\MainWindow.xaml" this.btnCopy.Click += new System.Windows.RoutedEventHandler(this.btnCopy_Click); #line default #line hidden return; case 55: this.btnPaste = ((Fluent.Button)(target)); #line 740 "..\..\..\MainWindow.xaml" this.btnPaste.Click += new System.Windows.RoutedEventHandler(this.btnPaste_Click); #line default #line hidden return; case 56: this.ViewGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 57: this.Preview = ((Fluent.Button)(target)); #line 757 "..\..\..\MainWindow.xaml" this.Preview.Click += new System.Windows.RoutedEventHandler(this.Preview_Click); #line default #line hidden return; case 58: this.btnPublish = ((Fluent.Button)(target)); #line 775 "..\..\..\MainWindow.xaml" this.btnPublish.Click += new System.Windows.RoutedEventHandler(this.btnPublish_Click); #line default #line hidden return; case 59: this.tabItem2 = ((Fluent.RibbonTabItem)(target)); return; case 60: this.ResourcesRibbonGroupBox = ((Fluent.RibbonGroupBox)(target)); return; case 61: #line 909 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 62: #line 924 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 63: #line 938 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 64: #line 967 "..\..\..\MainWindow.xaml" ((Fluent.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SplitButton_Click); #line default #line hidden return; case 65: this.tabItem6 = ((Fluent.RibbonTabItem)(target)); return; case 66: this.btnHelp = ((Fluent.Button)(target)); #line 1257 "..\..\..\MainWindow.xaml" this.btnHelp.Click += new System.Windows.RoutedEventHandler(this.btnHelp_Click); #line default #line hidden return; case 67: this.btnfeedback = ((Fluent.Button)(target)); #line 1267 "..\..\..\MainWindow.xaml" this.btnfeedback.Click += new System.Windows.RoutedEventHandler(this.Button_Click_6); #line default #line hidden return; case 68: this.treeViewControl1 = ((System.Windows.Controls.TreeView)(target)); #line 1315 "..\..\..\MainWindow.xaml" this.treeViewControl1.PreviewDragEnter += new System.Windows.DragEventHandler(this.TextBlock_PreviewDragEnter); #line default #line hidden #line 1316 "..\..\..\MainWindow.xaml" this.treeViewControl1.PreviewDragLeave += new System.Windows.DragEventHandler(this.TextBlock_PreviewDragLeave); #line default #line hidden #line 1317 "..\..\..\MainWindow.xaml" this.treeViewControl1.PreviewDragOver += new System.Windows.DragEventHandler(this.treeViewControl1_PreviewDragOver); #line default #line hidden #line 1318 "..\..\..\MainWindow.xaml" this.treeViewControl1.SelectedItemChanged += new System.Windows.RoutedPropertyChangedEventHandler <object>(this.treeViewControl1_SelectedItemChanged); #line default #line hidden #line 1321 "..\..\..\MainWindow.xaml" this.treeViewControl1.Drop += new System.Windows.DragEventHandler(this.PubDropTreeAndBlockEvent); #line default #line hidden return; case 69: this.scrollViewer = ((System.Windows.Controls.ScrollViewer)(target)); return; case 70: this.grid = ((System.Windows.Controls.Grid)(target)); return; case 71: this.scaleTransform = ((System.Windows.Media.ScaleTransform)(target)); return; case 72: this.propertyManage1 = ((jg.Editor.Library.Property.PropertyManage)(target)); return; case 73: this.controlTimeLine = ((jg.Editor.Library.ControlTimeLine)(target)); return; case 74: this.zoomSlider = ((System.Windows.Controls.Slider)(target)); #line 1428 "..\..\..\MainWindow.xaml" this.zoomSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.zoomSlider_ValueChanged); #line default #line hidden return; case 75: this.ShowNewWin = ((System.Windows.Controls.Grid)(target)); return; case 76: this.ProgressEditBusyName = ((jg.Editor.Library.Control.ProgressEditBusy)(target)); return; } this._contentLoaded = true; }
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { switch (connectionId) { case 1: this.layoutRoot = ((System.Windows.Controls.Grid)(target)); return; case 2: this.myRibbon = ((Fluent.Ribbon)(target)); return; case 3: this.mainTab = ((Fluent.RibbonTabItem)(target)); return; case 4: this.btnConnect = ((Fluent.Button)(target)); return; case 5: this.btnDisconnect = ((Fluent.Button)(target)); return; case 6: this.performanceMonitor = ((Codeplex.Dashboarding.PerformanceMonitor)(target)); return; case 7: this.LblDayOfWeek = ((System.Windows.Controls.Label)(target)); return; case 8: this.LblDayNumber = ((System.Windows.Controls.Label)(target)); return; case 9: this.LblMonth = ((System.Windows.Controls.Label)(target)); return; case 10: this.helpTab = ((Fluent.RibbonTabItem)(target)); return; case 11: this.grdHost = ((System.Windows.Controls.Grid)(target)); return; case 12: this.lstDbList = ((System.Windows.Controls.ListView)(target)); return; case 13: this.cmbDBObjects = ((System.Windows.Controls.ComboBox)(target)); return; case 14: this.lstTableList = ((System.Windows.Controls.ListView)(target)); return; case 15: this.menu = ((System.Windows.Controls.Menu)(target)); return; case 16: this.grdMain = ((System.Windows.Controls.Grid)(target)); return; case 17: this.tab1 = ((SQLServerCompanion.Controls.TabControlEx)(target)); return; } this._contentLoaded = true; }