Exemplo n.º 1
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.myTest  = this.Factory.CreateRibbonTab();
     this.myGroup = this.Factory.CreateRibbonGroup();
     this.myTest.SuspendLayout();
     this.SuspendLayout();
     //
     // myTest
     //
     this.myTest.Groups.Add(this.myGroup);
     this.myTest.Label = "测试标签";
     this.myTest.Name  = "myTest";
     //
     // myGroup
     //
     this.myGroup.DialogLauncher = ribbonDialogLauncherImpl1;
     this.myGroup.Label          = "测试分组";
     this.myGroup.Name           = "myGroup";
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.myTest);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.myTest.ResumeLayout(false);
     this.myTest.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.HomeTab             = this.Factory.CreateRibbonTab();
     this.PrimaryGroup        = this.Factory.CreateRibbonGroup();
     this.TimerToggleButton   = this.Factory.CreateRibbonToggleButton();
     this.SecondaryGroup      = this.Factory.CreateRibbonGroup();
     this.TimerPassedCheckBox = this.Factory.CreateRibbonCheckBox();
     this.HomeTab.SuspendLayout();
     this.PrimaryGroup.SuspendLayout();
     this.SecondaryGroup.SuspendLayout();
     //
     // HomeTab
     //
     this.HomeTab.Groups.Add(this.PrimaryGroup);
     this.HomeTab.Groups.Add(this.SecondaryGroup);
     this.HomeTab.Label = "DOC TIMER";
     this.HomeTab.Name  = "HomeTab";
     //
     // PrimaryGroup
     //
     this.PrimaryGroup.DialogLauncher = ribbonDialogLauncherImpl1;
     this.PrimaryGroup.Items.Add(this.TimerToggleButton);
     this.PrimaryGroup.Name = "PrimaryGroup";
     this.PrimaryGroup.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.PrimaryGroup_DialogLauncherClick);
     //
     // TimerToggleButton
     //
     this.TimerToggleButton.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.TimerToggleButton.Label         = "Toggle Timer Display";
     this.TimerToggleButton.Name          = "TimerToggleButton";
     this.TimerToggleButton.OfficeImageId = "StartAfterPrevious";
     this.TimerToggleButton.ShowImage     = true;
     this.TimerToggleButton.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.TimerToggleButton_Click);
     //
     // SecondaryGroup
     //
     this.SecondaryGroup.Items.Add(this.TimerPassedCheckBox);
     this.SecondaryGroup.Name = "SecondaryGroup";
     //
     // TimerPassedCheckBox
     //
     this.TimerPassedCheckBox.Label  = "Timer passed";
     this.TimerPassedCheckBox.Name   = "TimerPassedCheckBox";
     this.TimerPassedCheckBox.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.TimerPassedCheckBox_Click);
     //
     // TimerRibbon
     //
     this.Name       = "TimerRibbon";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.HomeTab);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.TimerRibbon_Load);
     this.HomeTab.ResumeLayout(false);
     this.HomeTab.PerformLayout();
     this.PrimaryGroup.ResumeLayout(false);
     this.PrimaryGroup.PerformLayout();
     this.SecondaryGroup.ResumeLayout(false);
     this.SecondaryGroup.PerformLayout();
 }
Exemplo n.º 3
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.tab2    = this.Factory.CreateRibbonTab();
     this.group2  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.tab2.SuspendLayout();
     this.group2.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.Label = "group1";
     this.group1.Name  = "group1";
     //
     // tab2
     //
     this.tab2.Groups.Add(this.group2);
     this.tab2.Label = "Test tab";
     this.tab2.Name  = "tab2";
     //
     // group2
     //
     this.group2.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group2.Items.Add(this.button1);
     this.group2.Label = "Test Group";
     this.group2.Name  = "group2";
     //
     // button1
     //
     this.button1.Label  = "Show Window";
     this.button1.Name   = "button1";
     this.button1.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.PowerPoint.Presentation";
     this.Tabs.Add(this.tab1);
     this.Tabs.Add(this.tab2);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.tab2.ResumeLayout(false);
     this.tab2.PerformLayout();
     this.group2.ResumeLayout(false);
     this.group2.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1     = this.Factory.CreateRibbonTab();
     this.group1   = this.Factory.CreateRibbonGroup();
     this.btnRed   = this.Factory.CreateRibbonToggleButton();
     this.btnGreen = this.Factory.CreateRibbonToggleButton();
     this.btnBlue  = this.Factory.CreateRibbonToggleButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "Actions";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.btnRed);
     this.group1.Items.Add(this.btnGreen);
     this.group1.Items.Add(this.btnBlue);
     this.group1.Label = "Colors";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
     //
     // btnRed
     //
     this.btnRed.Label  = "Red";
     this.btnRed.Name   = "btnRed";
     this.btnRed.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnRed_Click);
     //
     // btnGreen
     //
     this.btnGreen.Label  = "Green";
     this.btnGreen.Name   = "btnGreen";
     this.btnGreen.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnGreen_Click);
     //
     // btnBlue
     //
     this.btnBlue.Label  = "Blue";
     this.btnBlue.Name   = "btnBlue";
     this.btnBlue.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnBlue_Click);
     //
     // ActionsRibbon
     //
     this.Name       = "ActionsRibbon";
     this.RibbonType = "Microsoft.Visio.Drawing";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.ActionsRibbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1               = this.Factory.CreateRibbonTab();
     this.tabWunderlist      = this.Factory.CreateRibbonTab();
     this.groupWunderlist    = this.Factory.CreateRibbonGroup();
     this.btnAddToWunderlist = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.tabWunderlist.SuspendLayout();
     this.groupWunderlist.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // tabWunderlist
     //
     this.tabWunderlist.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tabWunderlist.ControlId.OfficeId      = "TabMail";
     this.tabWunderlist.Groups.Add(this.groupWunderlist);
     this.tabWunderlist.Label = "TabMail";
     this.tabWunderlist.Name  = "tabWunderlist";
     //
     // groupWunderlist
     //
     this.groupWunderlist.DialogLauncher = ribbonDialogLauncherImpl1;
     this.groupWunderlist.Items.Add(this.btnAddToWunderlist);
     this.groupWunderlist.Label = "Wunderlist";
     this.groupWunderlist.Name  = "groupWunderlist";
     this.groupWunderlist.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.groupWunderlist_DialogLauncherClick);
     //
     // btnAddToWunderlist
     //
     this.btnAddToWunderlist.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnAddToWunderlist.Image       = global::AddToWunderlistForOutlook.Properties.Resources.WunderlistIcon2_64;
     this.btnAddToWunderlist.Label       = "Add to Wunderlist";
     this.btnAddToWunderlist.Name        = "btnAddToWunderlist";
     this.btnAddToWunderlist.ShowImage   = true;
     this.btnAddToWunderlist.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnAddToWunderlist_Click);
     //
     // WunderlistRibbon
     //
     this.Name       = "WunderlistRibbon";
     this.RibbonType = "Microsoft.Outlook.Explorer, Microsoft.Outlook.Post.Read";
     this.Tabs.Add(this.tab1);
     this.Tabs.Add(this.tabWunderlist);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.tabWunderlist.ResumeLayout(false);
     this.tabWunderlist.PerformLayout();
     this.groupWunderlist.ResumeLayout(false);
     this.groupWunderlist.PerformLayout();
 }
Exemplo n.º 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1      = this.Factory.CreateRibbonTab();
     this.group1    = this.Factory.CreateRibbonGroup();
     this.checkBox1 = this.Factory.CreateRibbonCheckBox();
     this.checkBox2 = this.Factory.CreateRibbonCheckBox();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabNewMailMessage";
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabNewMailMessage";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     ribbonDialogLauncherImpl1.ScreenTip = "Blockchain Settings";
     ribbonDialogLauncherImpl1.SuperTip  = "Show the Blockchain Settings dialog box so you can change the Ethereum server add" +
                                           "ress, account and password.";
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.checkBox1);
     this.group1.Items.Add(this.checkBox2);
     this.group1.Label = "Blockchain";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
     //
     // checkBox1
     //
     this.checkBox1.Label  = "Stamp Message on Send";
     this.checkBox1.Name   = "checkBox1";
     this.checkBox1.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.checkBox1_Click);
     //
     // checkBox2
     //
     this.checkBox2.Label  = "Notify Recipients";
     this.checkBox2.Name   = "checkBox2";
     this.checkBox2.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.checkBox2_Click);
     //
     // RibbonStamp
     //
     this.Name       = "RibbonStamp";
     this.RibbonType = "Microsoft.Outlook.Mail.Compose";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.RibbonStamp_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1             = this.Factory.CreateRibbonTab();
     this.GroupProperties  = this.Factory.CreateRibbonGroup();
     this.DSOptions        = this.Factory.CreateRibbonButton();
     this.DSEnableSchedule = this.Factory.CreateRibbonCheckBox();
     this.tab1.SuspendLayout();
     this.GroupProperties.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabSendReceive";
     this.tab1.Groups.Add(this.GroupProperties);
     this.tab1.Label = "TabSendReceive";
     this.tab1.Name  = "tab1";
     //
     // GroupProperties
     //
     this.GroupProperties.DialogLauncher = ribbonDialogLauncherImpl1;
     this.GroupProperties.Items.Add(this.DSOptions);
     this.GroupProperties.Items.Add(this.DSEnableSchedule);
     this.GroupProperties.Label                = "Delay Send";
     this.GroupProperties.Name                 = "GroupProperties";
     this.GroupProperties.Position             = this.Factory.RibbonPosition.AfterOfficeId("GroupProperties");
     this.GroupProperties.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.GroupProperties_DialogLauncherClick);
     //
     // DSOptions
     //
     this.DSOptions.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.DSOptions.Label         = "Options";
     this.DSOptions.Name          = "DSOptions";
     this.DSOptions.OfficeImageId = "AnimationDelay";
     this.DSOptions.ShowImage     = true;
     this.DSOptions.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.DSOptions_Click);
     //
     // DSEnableSchedule
     //
     this.DSEnableSchedule.Label  = "Enable";
     this.DSEnableSchedule.Name   = "DSEnableSchedule";
     this.DSEnableSchedule.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.DSEnableSchedule_Click);
     //
     // Main
     //
     this.Name       = "Main";
     this.RibbonType = "Microsoft.Outlook.Explorer";
     this.Tabs.Add(this.tab1);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.GroupProperties.ResumeLayout(false);
     this.GroupProperties.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1          = this.Factory.CreateRibbonTab();
     this.group1        = this.Factory.CreateRibbonGroup();
     this.btnConnection = this.Factory.CreateRibbonButton();
     this.btnTemplate   = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "DeXrm Connection";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.btnConnection);
     this.group1.Items.Add(this.btnTemplate);
     this.group1.Label = "Connection";
     this.group1.Name  = "group1";
     //
     // btnConnection
     //
     this.btnConnection.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnConnection.Image       = global::DeXrm.CreateField.Resource.Connection;
     this.btnConnection.Label       = "Connection";
     this.btnConnection.Name        = "btnConnection";
     this.btnConnection.ShowImage   = true;
     //
     // btnTemplate
     //
     this.btnTemplate.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnTemplate.Image       = global::DeXrm.CreateField.Resource.template;
     this.btnTemplate.Label       = "Load template";
     this.btnTemplate.Name        = "btnTemplate";
     this.btnTemplate.ShowImage   = true;
     //
     // DeXrm
     //
     this.Name       = "DeXrm";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.DeXrm_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tabMail       = this.Factory.CreateRibbonTab();
     this.groupMarkAll  = this.Factory.CreateRibbonGroup();
     this.buttonMarkAll = this.Factory.CreateRibbonButton();
     this.tabMail.SuspendLayout();
     this.groupMarkAll.SuspendLayout();
     this.SuspendLayout();
     //
     // tabMail
     //
     this.tabMail.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tabMail.ControlId.OfficeId      = "TabMail";
     this.tabMail.Groups.Add(this.groupMarkAll);
     this.tabMail.Label = "TabMail";
     this.tabMail.Name  = "tabMail";
     //
     // groupMarkAll
     //
     ribbonDialogLauncherImpl1.ScreenTip = "Set Selected Folders";
     ribbonDialogLauncherImpl1.SuperTip  = "Set the folders in which all messages will be marked as read.";
     this.groupMarkAll.DialogLauncher    = ribbonDialogLauncherImpl1;
     this.groupMarkAll.Items.Add(this.buttonMarkAll);
     this.groupMarkAll.Label                = "Mark All";
     this.groupMarkAll.Name                 = "groupMarkAll";
     this.groupMarkAll.Position             = this.Factory.RibbonPosition.BeforeOfficeId("GroupMailDelete");
     this.groupMarkAll.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.groupMarkAll_DialogLauncherClick);
     //
     // buttonMarkAll
     //
     this.buttonMarkAll.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.buttonMarkAll.Label         = "Mark All As Read";
     this.buttonMarkAll.Name          = "buttonMarkAll";
     this.buttonMarkAll.OfficeImageId = "MarkAllAsRead";
     this.buttonMarkAll.ScreenTip     = "Mark All As Read";
     this.buttonMarkAll.ShowImage     = true;
     this.buttonMarkAll.SuperTip      = "Marks all messages in all selected folders as read.";
     this.buttonMarkAll.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonMarkAll_Click);
     //
     // MarkAllAsReadRibbon
     //
     this.Name       = "MarkAllAsReadRibbon";
     this.RibbonType = "Microsoft.Outlook.Explorer";
     this.Tabs.Add(this.tabMail);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.MarkAllAsRead_Load);
     this.tabMail.ResumeLayout(false);
     this.tabMail.PerformLayout();
     this.groupMarkAll.ResumeLayout(false);
     this.groupMarkAll.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tabDeveloper        = this.Factory.CreateRibbonTab();
     this.groupMapping        = this.Factory.CreateRibbonGroup();
     this.toggleButtonMapping = this.Factory.CreateRibbonToggleButton();
     this.tabDeveloper.SuspendLayout();
     this.groupMapping.SuspendLayout();
     //
     // tabDeveloper
     //
     this.tabDeveloper.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tabDeveloper.ControlId.OfficeId      = "TabDeveloper";
     this.tabDeveloper.Groups.Add(this.groupMapping);
     this.tabDeveloper.Label = "TabDeveloper";
     this.tabDeveloper.Name  = "tabDeveloper";
     //
     // groupMapping
     //
     this.groupMapping.DialogLauncher = ribbonDialogLauncherImpl1;
     this.groupMapping.Items.Add(this.toggleButtonMapping);
     this.groupMapping.Label                = "Mapping";
     this.groupMapping.Name                 = "groupMapping";
     this.groupMapping.Position             = this.Factory.RibbonPosition.AfterOfficeId("GroupControls");
     this.groupMapping.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.groupMapping_DialogLauncherClick);
     //
     // toggleButtonMapping
     //
     this.toggleButtonMapping.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.toggleButtonMapping.Image       = global::XmlMappingTaskPane.Properties.Resources.RibbonIcon;
     this.toggleButtonMapping.KeyTip      = "M";
     this.toggleButtonMapping.Label       = "XML Mapping";
     this.toggleButtonMapping.Name        = "toggleButtonMapping";
     this.toggleButtonMapping.ScreenTip   = "XML Mapping";
     this.toggleButtonMapping.ShowImage   = true;
     this.toggleButtonMapping.SuperTip    = "Opens the XML mapping task pane, which allows you to create custom XML data and ma" +
                                            "p it to content controls within the current document.";
     this.toggleButtonMapping.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.toggleButtonMapping_Click);
     //
     // RibbonMapping
     //
     this.Name       = "RibbonMapping";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.tabDeveloper);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.RibbonMapping_Load);
     this.tabDeveloper.ResumeLayout(false);
     this.tabDeveloper.PerformLayout();
     this.groupMapping.ResumeLayout(false);
     this.groupMapping.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.TabInsertCalendarTable    = this.Factory.CreateRibbonTab();
     this.GroupInsertCalendarTables = this.Factory.CreateRibbonGroup();
     this.ButtonInsertCalendarTable = this.Factory.CreateRibbonButton();
     this.TabInsertCalendarTable.SuspendLayout();
     this.GroupInsertCalendarTables.SuspendLayout();
     this.SuspendLayout();
     //
     // TabInsertCalendarTable
     //
     this.TabInsertCalendarTable.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.TabInsertCalendarTable.ControlId.OfficeId      = "TabInsert";
     this.TabInsertCalendarTable.Groups.Add(this.GroupInsertCalendarTables);
     this.TabInsertCalendarTable.Label = "TabInsert";
     this.TabInsertCalendarTable.Name  = "TabInsertCalendarTable";
     //
     // GroupInsertCalendarTables
     //
     ribbonDialogLauncherImpl1.ScreenTip           = "Select Month";
     this.GroupInsertCalendarTables.DialogLauncher = ribbonDialogLauncherImpl1;
     this.GroupInsertCalendarTables.Items.Add(this.ButtonInsertCalendarTable);
     this.GroupInsertCalendarTables.Label                = "Calendar Table";
     this.GroupInsertCalendarTables.Name                 = "GroupInsertCalendarTables";
     this.GroupInsertCalendarTables.Position             = this.Factory.RibbonPosition.AfterOfficeId("GroupInsertTables");
     this.GroupInsertCalendarTables.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.GroupInsertCalendarTables_DialogLauncherClick);
     //
     // ButtonInsertCalendarTable
     //
     this.ButtonInsertCalendarTable.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.ButtonInsertCalendarTable.Image       = global::CalendarTableAddIn.Properties.Resources.icon;
     this.ButtonInsertCalendarTable.Label       = "Current Month";
     this.ButtonInsertCalendarTable.Name        = "ButtonInsertCalendarTable";
     this.ButtonInsertCalendarTable.ShowImage   = true;
     this.ButtonInsertCalendarTable.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // Ribbon
     //
     this.Name       = "Ribbon";
     this.RibbonType = "Microsoft.Outlook.Mail.Compose";
     this.Tabs.Add(this.TabInsertCalendarTable);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Load);
     this.TabInsertCalendarTable.ResumeLayout(false);
     this.TabInsertCalendarTable.PerformLayout();
     this.GroupInsertCalendarTables.ResumeLayout(false);
     this.GroupInsertCalendarTables.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1          = this.Factory.CreateRibbonTab();
     this.securityGroup = this.Factory.CreateRibbonGroup();
     this.toggleSuspend = this.Factory.CreateRibbonToggleButton();
     this.tab1.SuspendLayout();
     this.securityGroup.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabOptions";
     this.tab1.Groups.Add(this.securityGroup);
     this.tab1.Label    = "TabOptions";
     this.tab1.Name     = "tab1";
     this.tab1.Position = this.Factory.RibbonPosition.AfterOfficeId("GroupRightsManagement");
     //
     // securityGroup
     //
     ribbonDialogLauncherImpl1.ScreenTip = "Preferences";
     this.securityGroup.DialogLauncher   = ribbonDialogLauncherImpl1;
     this.securityGroup.Items.Add(this.toggleSuspend);
     this.securityGroup.Label = "S/MIME";
     this.securityGroup.Name  = "securityGroup";
     this.securityGroup.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.securityGroup_DialogLauncherClick);
     //
     // toggleSuspend
     //
     this.toggleSuspend.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.toggleSuspend.Label         = "Suspend Account Defaults";
     this.toggleSuspend.Name          = "toggleSuspend";
     this.toggleSuspend.OfficeImageId = "SignatureShow";
     this.toggleSuspend.ShowImage     = true;
     this.toggleSuspend.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.toggleSuspend_Click);
     //
     // SettingsRibbon
     //
     this.Name       = "SettingsRibbon";
     this.RibbonType = "Microsoft.Outlook.Mail.Compose";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.SettingsRibbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.securityGroup.ResumeLayout(false);
     this.securityGroup.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 13
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.label1  = this.Factory.CreateRibbonLabel();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "tab1";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.label1);
     this.group1.Items.Add(this.button1);
     this.group1.Label = "group1";
     this.group1.Name  = "group1";
     //
     // label1
     //
     this.label1.Label = "qwe";
     this.label1.Name  = "label1";
     //
     // button1
     //
     this.button1.Label  = "button1";
     this.button1.Name   = "button1";
     this.button1.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 14
0
 /// <summary>
 /// デザイナーのサポートに必要なメソッドです。
 /// このメソッドの内容をコード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabInsert";
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabInsert";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Label = "バーコード";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
     //
     // button1
     //
     this.button1.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button1.Label         = "画像";
     this.button1.Name          = "button1";
     this.button1.OfficeImageId = "BarcodeInsert";
     this.button1.ScreenTip     = "JANコードからバーコード画像を生成しシートに貼り付けます。";
     this.button1.ShowImage     = true;
     this.button1.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // Ribbon
     //
     this.Name       = "Ribbon";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(addInRibbon));
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Label = "group1";
     this.group1.Name  = "group1";
     //
     // button1
     //
     this.button1.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button1.Image       = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Label       = "Analyse";
     this.button1.Name        = "button1";
     this.button1.ShowImage   = true;
     this.button1.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // addInRibbon
     //
     this.Name       = "addInRibbon";
     this.RibbonType = "Microsoft.Outlook.Explorer, Microsoft.Outlook.Mail.Read";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.addInRibbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 16
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label    = "自定义选项卡";
     this.tab1.Name     = "tab1";
     this.tab1.Position = this.Factory.RibbonPosition.AfterOfficeId("TabInsert");
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Label = "group1";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
     //
     // button1
     //
     this.button1.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button1.Label         = "第一个按钮";
     this.button1.Name          = "button1";
     this.button1.OfficeImageId = "Call";
     this.button1.ShowImage     = true;
     this.button1.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click);
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.TFSTab           = this.Factory.CreateRibbonTab();
     this.group1           = this.Factory.CreateRibbonGroup();
     this.openDialogButton = this.Factory.CreateRibbonButton();
     this.TFSTab.SuspendLayout();
     this.group1.SuspendLayout();
     //
     // TFSTab
     //
     this.TFSTab.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.TFSTab.ControlId.OfficeId      = "TabReadMessage";
     this.TFSTab.Groups.Add(this.group1);
     this.TFSTab.Label = "TabReadMessage";
     this.TFSTab.Name  = "TFSTab";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.openDialogButton);
     this.group1.Label = "TFS";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.Group_DialogLauncherClick);
     //
     // openDialogButton
     //
     this.openDialogButton.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.openDialogButton.Label         = "Attach email to work item";
     this.openDialogButton.Name          = "openDialogButton";
     this.openDialogButton.OfficeImageId = "AttachItemCombo";
     this.openDialogButton.ScreenTip     = "Attach the currently selected emails to a task in TFS";
     this.openDialogButton.ShowImage     = true;
     this.openDialogButton.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.openDialogButton_Click);
     //
     // ReadMessage
     //
     this.Name       = "ReadMessage";
     this.RibbonType = "Microsoft.Outlook.Mail.Read";
     this.Tabs.Add(this.TFSTab);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Load);
     this.TFSTab.ResumeLayout(false);
     this.TFSTab.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
 }
Exemplo n.º 18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(Ribbon1));
     this.tab1         = this.Factory.CreateRibbonTab();
     this.group1       = this.Factory.CreateRibbonGroup();
     this.SmartViewbtn = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.SmartViewbtn);
     this.group1.Label = "Fluke SmartView";
     this.group1.Name  = "group1";
     //
     // SmartViewbtn
     //
     this.SmartViewbtn.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.SmartViewbtn.Image       = ((System.Drawing.Image)(resources.GetObject("SmartViewbtn.Image")));
     this.SmartViewbtn.Label       = "Generate Custom Report";
     this.SmartViewbtn.Name        = "SmartViewbtn";
     this.SmartViewbtn.ShowImage   = true;
     this.SmartViewbtn.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.SmartViewbtn_Click);
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Label    = "Meeting Rooms";
     this.group1.Name     = "group1";
     this.group1.Position = this.Factory.RibbonPosition.AfterOfficeId("TabAppointment");
     //
     // button1
     //
     this.button1.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button1.Label       = "Meeting Room Reservation";
     this.button1.Name        = "button1";
     this.button1.Position    = this.Factory.RibbonPosition.BeforeOfficeId("TabAppointment");
     this.button1.ShowImage   = true;
     this.button1.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button1_Click_1);
     //
     // Ribbon_Icon
     //
     this.Name       = "Ribbon_Icon";
     this.RibbonType = "Microsoft.Outlook.Appointment";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Icon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1          = this.Factory.CreateRibbonTab();
     this.opcoes        = this.Factory.CreateRibbonGroup();
     this.BtnFormPedido = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.opcoes.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.opcoes);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // opcoes
     //
     this.opcoes.DialogLauncher = ribbonDialogLauncherImpl1;
     this.opcoes.Items.Add(this.BtnFormPedido);
     this.opcoes.Label = "Opções";
     this.opcoes.Name  = "opcoes";
     //
     // BtnFormPedido
     //
     this.BtnFormPedido.ImageName     = "iBtnFormPedido";
     this.BtnFormPedido.Label         = "Pedido";
     this.BtnFormPedido.Name          = "BtnFormPedido";
     this.BtnFormPedido.OfficeImageId = "DataFormExcel";
     this.BtnFormPedido.ShowImage     = true;
     this.BtnFormPedido.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.BtnFormPedido_Click);
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Click);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.opcoes.ResumeLayout(false);
     this.opcoes.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1    = this.Factory.CreateRibbonTab();
     this.group1  = this.Factory.CreateRibbonGroup();
     this.button1 = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "Data Load";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Label = "LIMS Calculation";
     this.group1.Name  = "group1";
     //
     // button1
     //
     this.button1.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button1.Label         = "Post Calc";
     this.button1.Name          = "button1";
     this.button1.OfficeImageId = "BroadcastEdit";
     this.button1.ShowImage     = true;
     this.button1.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.postCalc_click);
     //
     // DataLoad
     //
     this.Name       = "DataLoad";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(RibbonParse));
     this.tab1          = this.Factory.CreateRibbonTab();
     this.group1        = this.Factory.CreateRibbonGroup();
     this.WPData_Button = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.WPData_Button);
     this.group1.Label = "Whitepages Pro";
     this.group1.Name  = "group1";
     //
     // WPData_Button
     //
     this.WPData_Button.Image     = ((System.Drawing.Image)(resources.GetObject("WPData_Button.Image")));
     this.WPData_Button.Label     = "Get Phone Data";
     this.WPData_Button.Name      = "WPData_Button";
     this.WPData_Button.ScreenTip = "Get Phone data from Whitepages Pro";
     this.WPData_Button.ShowImage = true;
     this.WPData_Button.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.WPData_Button_Click);
     //
     // RibbonParse
     //
     this.Name       = "RibbonParse";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.RibbonParse_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
 }
Exemplo n.º 23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1       = this.Factory.CreateRibbonTab();
     this.group1     = this.Factory.CreateRibbonGroup();
     this.TestButton = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "Easy Excel";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.TestButton);
     this.group1.Label = "Workbook and sheet";
     this.group1.Name  = "group1";
     //
     // TestButton
     //
     this.TestButton.Label  = "Workbook Snap";
     this.TestButton.Name   = "TestButton";
     this.TestButton.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.WorkbookSnap_click);
     //
     // TabRibbon1
     //
     this.Name       = "TabRibbon1";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.TabRibbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 24
0
 /// <summary>
 /// Требуемый метод для поддержки конструктора — не изменяйте
 /// содержимое этого метода с помощью редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1          = this.Factory.CreateRibbonTab();
     this.menu1         = this.Factory.CreateRibbonMenu();
     this.group1        = this.Factory.CreateRibbonGroup();
     this.button1       = this.Factory.CreateRibbonButton();
     this.button2       = this.Factory.CreateRibbonButton();
     this.toggleButton1 = this.Factory.CreateRibbonToggleButton();
     this.imageList1    = new System.Windows.Forms.ImageList(this.components);
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabAddIns";
     this.tab1.Name  = "tab1";
     //
     // menu1
     //
     this.menu1.Label     = "menu1";
     this.menu1.Name      = "menu1";
     this.menu1.ShowImage = true;
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.button1);
     this.group1.Items.Add(this.button2);
     this.group1.Items.Add(this.toggleButton1);
     this.group1.Label = "group1";
     this.group1.Name  = "group1";
     //
     // button1
     //
     this.button1.Label  = "Новый...";
     this.button1.Name   = "button1";
     this.button1.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.Button1_Click);
     //
     // button2
     //
     this.button2.Label = "button2";
     this.button2.Name  = "button2";
     //
     // toggleButton1
     //
     this.toggleButton1.Label = "toggleButton1";
     this.toggleButton1.Name  = "toggleButton1";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // RibbonWorkDoc
     //
     this.Name = "RibbonWorkDoc";
     //
     // RibbonWorkDoc.OfficeMenu
     //
     this.OfficeMenu.Items.Add(this.menu1);
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.RibbonWorkDoc_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 25
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(Ribbon_eZx));
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.Tab1                        = this.Factory.CreateRibbonTab();
     this.Group_DataBase              = this.Factory.CreateRibbonGroup();
     this.btn_DataRange               = this.Factory.CreateRibbonButton();
     this.ButtonValue                 = this.Factory.CreateRibbonButton();
     this.btnConstructDatabase        = this.Factory.CreateRibbonButton();
     this.btnEditDatabase             = this.Factory.CreateRibbonButton();
     this.Group1                      = this.Factory.CreateRibbonGroup();
     this.btn_XYExchange              = this.Factory.CreateRibbonButton();
     this.btn_ExtractDataFromChart    = this.Factory.CreateRibbonButton();
     this.Group2                      = this.Factory.CreateRibbonGroup();
     this.btnReArrange                = this.Factory.CreateRibbonButton();
     this.EditBox_ReArrangeStart      = this.Factory.CreateRibbonEditBox();
     this.EditBox_ReArrangeEnd        = this.Factory.CreateRibbonEditBox();
     this.EditBox_ReArrangeIntervalId = this.Factory.CreateRibbonEditBox();
     this.btnShrink                   = this.Factory.CreateRibbonButton();
     this.btnReshape                  = this.Factory.CreateRibbonButton();
     this.ButtonTranspose             = this.Factory.CreateRibbonButton();
     this.button_SpeedMode            = this.Factory.CreateRibbonButton();
     this.button_Interpolations       = this.Factory.CreateRibbonButton();
     this.Group3                      = this.Factory.CreateRibbonGroup();
     this.EditBox_p1                  = this.Factory.CreateRibbonEditBox();
     this.EditBox_p2                  = this.Factory.CreateRibbonEditBox();
     this.EditBox_p3                  = this.Factory.CreateRibbonEditBox();
     this.Tab2                        = this.Factory.CreateRibbonTab();
     this.Group_Help                  = this.Factory.CreateRibbonGroup();
     this.btn_ExcelHelp               = this.Factory.CreateRibbonButton();
     this.btn_OfficeHelp              = this.Factory.CreateRibbonButton();
     this.Tab1.SuspendLayout();
     this.Group_DataBase.SuspendLayout();
     this.Group1.SuspendLayout();
     this.Group2.SuspendLayout();
     this.Group3.SuspendLayout();
     this.Tab2.SuspendLayout();
     this.Group_Help.SuspendLayout();
     this.SuspendLayout();
     //
     // Tab1
     //
     this.Tab1.Groups.Add(this.Group_DataBase);
     this.Tab1.Groups.Add(this.Group1);
     this.Tab1.Groups.Add(this.Group2);
     this.Tab1.Groups.Add(this.Group3);
     this.Tab1.Label = "eZx";
     this.Tab1.Name  = "Tab1";
     //
     // Group_DataBase
     //
     this.Group_DataBase.Items.Add(this.btn_DataRange);
     this.Group_DataBase.Items.Add(this.ButtonValue);
     this.Group_DataBase.Items.Add(this.btnConstructDatabase);
     this.Group_DataBase.Items.Add(this.btnEditDatabase);
     this.Group_DataBase.Label = "数据库";
     this.Group_DataBase.Name  = "Group_DataBase";
     //
     // btn_DataRange
     //
     this.btn_DataRange.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btn_DataRange.Label         = "数据范围";
     this.btn_DataRange.Name          = "btn_DataRange";
     this.btn_DataRange.OfficeImageId = "DatasheetView";
     this.btn_DataRange.ScreenTip     = "选择当前工作表中所有使用到的单元格范围";
     this.btn_DataRange.ShowImage     = true;
     this.btn_DataRange.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btn_DataRange_Click);
     //
     // ButtonValue
     //
     this.ButtonValue.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.ButtonValue.Image       = ((System.Drawing.Image)(resources.GetObject("ButtonValue.Image")));
     this.ButtonValue.Label       = "转换为值";
     this.ButtonValue.Name        = "ButtonValue";
     this.ButtonValue.ScreenTip   = "Range.Value = Range.Value";
     this.ButtonValue.ShowImage   = true;
     this.ButtonValue.SuperTip    = "这一操作会将选中的单元格中的公式转化为对应的值,而且,将#DIV/0!、#VALUE!等错误转换为Integer.MinValue";
     this.ButtonValue.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.ButtonValue_Click);
     //
     // btnConstructDatabase
     //
     this.btnConstructDatabase.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnConstructDatabase.Label         = "构造数据库";
     this.btnConstructDatabase.Name          = "btnConstructDatabase";
     this.btnConstructDatabase.OfficeImageId = "DatabaseSqlServer";
     this.btnConstructDatabase.ShowImage     = true;
     this.btnConstructDatabase.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnConstructDatabase_Click);
     //
     // btnEditDatabase
     //
     this.btnEditDatabase.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnEditDatabase.Enabled       = false;
     this.btnEditDatabase.Label         = "编辑数据库";
     this.btnEditDatabase.Name          = "btnEditDatabase";
     this.btnEditDatabase.OfficeImageId = "DatabaseSqlServer";
     this.btnEditDatabase.ShowImage     = true;
     this.btnEditDatabase.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnEditDatabase_Click);
     //
     // Group1
     //
     this.Group1.Items.Add(this.btn_XYExchange);
     this.Group1.Items.Add(this.btn_ExtractDataFromChart);
     this.Group1.Label = "图表";
     this.Group1.Name  = "Group1";
     //
     // btn_XYExchange
     //
     this.btn_XYExchange.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btn_XYExchange.Label         = "交换XY轴";
     this.btn_XYExchange.Name          = "btn_XYExchange";
     this.btn_XYExchange.OfficeImageId = "RecoverInviteToMeeting";
     this.btn_XYExchange.ScreenTip     = "交换图表的X轴与Y轴";
     this.btn_XYExchange.ShowImage     = true;
     this.btn_XYExchange.SuperTip      = "      对于当前选择的图表,将其中的每一条数据曲线的X数据与Y数据交换,以达到视图上的图表交换XY轴的效果。";
     this.btn_XYExchange.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btn_XYExchange_Click);
     //
     // btn_ExtractDataFromChart
     //
     this.btn_ExtractDataFromChart.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btn_ExtractDataFromChart.Label         = "提取数据";
     this.btn_ExtractDataFromChart.Name          = "btn_ExtractDataFromChart";
     this.btn_ExtractDataFromChart.OfficeImageId = "ChartTypeXYScatterInsertGallery";
     this.btn_ExtractDataFromChart.ScreenTip     = "提取图表中的数据";
     this.btn_ExtractDataFromChart.ShowImage     = true;
     this.btn_ExtractDataFromChart.SuperTip      = "一般情况下,可以直接通过Excel来提取到Word中的图表中的数据。但是,如果将Excel中的Chart粘贴进Word,而且是以链接的形式粘贴的。在后期操作中,此" +
                                                   "Chart所链接的源Excel文件丢失,此时在Word中便不能直接提取到Excel中的数据了。";
     this.btn_ExtractDataFromChart.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btn_ExtractDataFromChart_Click);
     //
     // Group2
     //
     this.Group2.Items.Add(this.btnReArrange);
     this.Group2.Items.Add(this.EditBox_ReArrangeStart);
     this.Group2.Items.Add(this.EditBox_ReArrangeEnd);
     this.Group2.Items.Add(this.EditBox_ReArrangeIntervalId);
     this.Group2.Items.Add(this.btnShrink);
     this.Group2.Items.Add(this.btnReshape);
     this.Group2.Items.Add(this.ButtonTranspose);
     this.Group2.Items.Add(this.button_SpeedMode);
     this.Group2.Items.Add(this.button_Interpolations);
     this.Group2.Label = "数据处理";
     this.Group2.Name  = "Group2";
     //
     // btnReArrange
     //
     this.btnReArrange.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnReArrange.Label         = "数据重排";
     this.btnReArrange.Name          = "btnReArrange";
     this.btnReArrange.OfficeImageId = "ArrangeTools";
     this.btnReArrange.ScreenTip     = "将选择的数据按指定的区间与间隔进行重新排列";
     this.btnReArrange.ShowImage     = true;
     this.btnReArrange.SuperTip      = "用来进行排序的那一列数据只能为数值或者日期\r\n如果控制列中的数据不是按递增或者递减的规律排列的,则程序会先将其按大小进行排序。";
     this.btnReArrange.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnReArrange_Click);
     //
     // EditBox_ReArrangeStart
     //
     this.EditBox_ReArrangeStart.Label    = "Start";
     this.EditBox_ReArrangeStart.Name     = "EditBox_ReArrangeStart";
     this.EditBox_ReArrangeStart.SuperTip = "可以为数值或者日期格式";
     this.EditBox_ReArrangeStart.Text     = null;
     //
     // EditBox_ReArrangeEnd
     //
     this.EditBox_ReArrangeEnd.Label    = "End";
     this.EditBox_ReArrangeEnd.Name     = "EditBox_ReArrangeEnd";
     this.EditBox_ReArrangeEnd.SuperTip = "可以为数值或者日期格式";
     this.EditBox_ReArrangeEnd.Text     = null;
     //
     // EditBox_ReArrangeIntervalId
     //
     this.EditBox_ReArrangeIntervalId.Label     = "Interval,Id";
     this.EditBox_ReArrangeIntervalId.Name      = "EditBox_ReArrangeIntervalId";
     this.EditBox_ReArrangeIntervalId.ScreenTip = "递进步长与用来进行排序的那一列的序号";
     this.EditBox_ReArrangeIntervalId.SuperTip  = "    第一个数值为递进步长,第二个数值为排序数据列,二者用\",\"进行分隔。如果是要按选择的单元格区间的第一列来作为进行排序的数据列,则其值为1。";
     this.EditBox_ReArrangeIntervalId.Text      = "1,1";
     //
     // btnShrink
     //
     this.btnShrink.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnShrink.Label         = "消除空行";
     this.btnShrink.Name          = "btnShrink";
     this.btnShrink.OfficeImageId = "EquationMatrixInsertRowBefore";
     this.btnShrink.ScreenTip     = "将选择的区域中的指定列的元素为空的行的数据删除";
     this.btnShrink.ShowImage     = true;
     this.btnShrink.SuperTip      = "注意: 1. 标志列的列号由参数 P1 指定。 \r\n2. 如果单元格有 #VALUE!、#NULL!、#DIV/0!等错误时,会将其处理为Integer类型的最小" +
                                    "值。";
     this.btnShrink.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnShrink_Click);
     //
     // btnReshape
     //
     this.btnReshape.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnReshape.Label         = "表格转换";
     this.btnReshape.Name          = "btnReshape";
     this.btnReshape.OfficeImageId = "TaskMoveForwardFourWeeks";
     this.btnReshape.ScreenTip     = "将选择的表格重新排列为指定的形式";
     this.btnReshape.ShowImage     = true;
     this.btnReshape.SuperTip      = "  类似于Matlab中的 Reshape。\r\n  请在P1中输入新的行数,P2中输入新的列数,在P3中指明是否要将每一列后面的空数据删除(如果数据为空或者为Fa" +
                                     "lse,则表示不删除结尾空数据)。\r\n  在进行重排时,会先将所有的数据的所有列排成一列,然后再一列一列地铺展开来。";
     this.btnReshape.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.DataReshape);
     //
     // ButtonTranspose
     //
     this.ButtonTranspose.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.ButtonTranspose.Label         = "原位转置";
     this.ButtonTranspose.Name          = "ButtonTranspose";
     this.ButtonTranspose.OfficeImageId = "TableSummarizeWithPivot";
     this.ButtonTranspose.ScreenTip     = "将选中的区域进行原位转置";
     this.ButtonTranspose.ShowImage     = true;
     this.ButtonTranspose.SuperTip      = "此命令可以将用户同时选择的多个不相交的小区域分别进行原位转置。";
     this.ButtonTranspose.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.ButtonTranspose_Click);
     //
     // button_SpeedMode
     //
     this.button_SpeedMode.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button_SpeedMode.Label         = "缩减";
     this.button_SpeedMode.Name          = "button_SpeedMode";
     this.button_SpeedMode.OfficeImageId = "ChartTrendline";
     this.button_SpeedMode.ScreenTip     = "缩减曲线数据点的数量";
     this.button_SpeedMode.ShowImage     = true;
     this.button_SpeedMode.SuperTip      = "类似于Origin中的SpeedMode功能,用来将大量数据点曲线缩减为少量的数据点,并保持曲线原来的大致形态。";
     this.button_SpeedMode.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button_SpeedMode_Click);
     //
     // button_Interpolations
     //
     this.button_Interpolations.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.button_Interpolations.Image       = global::eZx.Properties.Resources.Interpolation;
     this.button_Interpolations.Label       = "样条插值";
     this.button_Interpolations.Name        = "button_Interpolations";
     this.button_Interpolations.ScreenTip   = "三次样条插值";
     this.button_Interpolations.ShowImage   = true;
     this.button_Interpolations.SuperTip    = "三次样条的特性为:曲线中任意点处的二阶导数连续。";
     this.button_Interpolations.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button_Interpolations_Click);
     //
     // Group3
     //
     this.Group3.Items.Add(this.EditBox_p1);
     this.Group3.Items.Add(this.EditBox_p2);
     this.Group3.Items.Add(this.EditBox_p3);
     this.Group3.Label = "基本参数";
     this.Group3.Name  = "Group3";
     //
     // EditBox_p1
     //
     this.EditBox_p1.Label        = "P1";
     this.EditBox_p1.Name         = "EditBox_p1";
     this.EditBox_p1.Text         = "2";
     this.EditBox_p1.TextChanged += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.EditBox_p1_TextChanged);
     //
     // EditBox_p2
     //
     this.EditBox_p2.Label        = "P2";
     this.EditBox_p2.Name         = "EditBox_p2";
     this.EditBox_p2.ScreenTip    = "其他命令的基本参数";
     this.EditBox_p2.SuperTip     = "文本框中的数据类型为Object";
     this.EditBox_p2.Text         = "4";
     this.EditBox_p2.TextChanged += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.EditBox_p2_TextChanged);
     //
     // EditBox_p3
     //
     this.EditBox_p3.Label        = "P3";
     this.EditBox_p3.Name         = "EditBox_p3";
     this.EditBox_p3.Text         = "False";
     this.EditBox_p3.TextChanged += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.EditBox_p3_TextChanged);
     //
     // Tab2
     //
     this.Tab2.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.Tab2.ControlId.OfficeId      = "TabDeveloper";
     this.Tab2.Groups.Add(this.Group_Help);
     this.Tab2.Label = "TabDeveloper";
     this.Tab2.Name  = "Tab2";
     //
     // Group_Help
     //
     this.Group_Help.DialogLauncher = ribbonDialogLauncherImpl1;
     this.Group_Help.Items.Add(this.btn_ExcelHelp);
     this.Group_Help.Items.Add(this.btn_OfficeHelp);
     this.Group_Help.Label                = "帮助文档";
     this.Group_Help.Name                 = "Group_Help";
     this.Group_Help.Position             = this.Factory.RibbonPosition.AfterOfficeId("GroupXml");
     this.Group_Help.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.Group_Help_DialogLauncherClick);
     //
     // btn_ExcelHelp
     //
     this.btn_ExcelHelp.Label  = "Excel开发文档";
     this.btn_ExcelHelp.Name   = "btn_ExcelHelp";
     this.btn_ExcelHelp.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btn_ExcelHelp_Click);
     //
     // btn_OfficeHelp
     //
     this.btn_OfficeHelp.Label  = "Office VBA";
     this.btn_OfficeHelp.Name   = "btn_OfficeHelp";
     this.btn_OfficeHelp.Click += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btn_OfficeHelp_Click);
     //
     // Ribbon_eZx
     //
     this.Name       = "Ribbon_eZx";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.Tab1);
     this.Tabs.Add(this.Tab2);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_zfy_Load);
     this.Tab1.ResumeLayout(false);
     this.Tab1.PerformLayout();
     this.Group_DataBase.ResumeLayout(false);
     this.Group_DataBase.PerformLayout();
     this.Group1.ResumeLayout(false);
     this.Group1.PerformLayout();
     this.Group2.ResumeLayout(false);
     this.Group2.PerformLayout();
     this.Group3.ResumeLayout(false);
     this.Group3.PerformLayout();
     this.Tab2.ResumeLayout(false);
     this.Tab2.PerformLayout();
     this.Group_Help.ResumeLayout(false);
     this.Group_Help.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager     resources             = new System.ComponentModel.ComponentResourceManager(typeof(XWikiRibbon));
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncher1 = new Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher();
     Microsoft.Office.Tools.Ribbon.RibbonDropDownItem   ribbonDropDownItem1   = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
     Microsoft.Office.Tools.Ribbon.RibbonDropDownItem   ribbonDropDownItem2   = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
     Microsoft.Office.Tools.Ribbon.RibbonDropDownItem   ribbonDropDownItem3   = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
     Microsoft.Office.Tools.Ribbon.RibbonDropDownItem   ribbonDropDownItem4   = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
     this.tab1                      = new Microsoft.Office.Tools.Ribbon.RibbonTab();
     this.xWikiTab                  = new Microsoft.Office.Tools.Ribbon.RibbonTab();
     this.xeGroup                   = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
     this.btnNewPage                = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnPublishDocument        = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.toggleWikiExplorer        = new Microsoft.Office.Tools.Ribbon.RibbonToggleButton();
     this.attachmentsGroup          = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
     this.uploadAttToPage           = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.downloadAtt               = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.currentDocumentGroup      = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
     this.btnRefresh                = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnPreview                = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnViewActiveDocInBrowser = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.toggleAnnotations         = new Microsoft.Office.Tools.Ribbon.RibbonToggleButton();
     this.selectionOptionsGroup     = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
     this.btnAddPage                = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnEditPage               = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnUpload                 = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnDownload               = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnDownloadAndOpen        = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnShowPages              = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnShowAttachments        = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.btnViewInBrowser          = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.OptionsGroup              = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
     this.btnXWordOptions           = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.syncSaving                = new Microsoft.Office.Tools.Ribbon.RibbonCheckBox();
     this.dropDownSyntax            = new Microsoft.Office.Tools.Ribbon.RibbonDropDown();
     this.dropDownSaveFormat        = new Microsoft.Office.Tools.Ribbon.RibbonDropDown();
     this.separator1                = new Microsoft.Office.Tools.Ribbon.RibbonSeparator();
     this.btnAboutXWord             = new Microsoft.Office.Tools.Ribbon.RibbonButton();
     this.tab1.SuspendLayout();
     this.xWikiTab.SuspendLayout();
     this.xeGroup.SuspendLayout();
     this.attachmentsGroup.SuspendLayout();
     this.currentDocumentGroup.SuspendLayout();
     this.selectionOptionsGroup.SuspendLayout();
     this.OptionsGroup.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Label   = "TabAddIns";
     this.tab1.Name    = "tab1";
     this.tab1.Visible = false;
     //
     // xWikiTab
     //
     this.xWikiTab.Groups.Add(this.xeGroup);
     this.xWikiTab.Groups.Add(this.attachmentsGroup);
     this.xWikiTab.Groups.Add(this.currentDocumentGroup);
     this.xWikiTab.Groups.Add(this.selectionOptionsGroup);
     this.xWikiTab.Groups.Add(this.OptionsGroup);
     this.xWikiTab.KeyTip = "X";
     this.xWikiTab.Label  = "XWord";
     this.xWikiTab.Name   = "xWikiTab";
     //
     // xeGroup
     //
     this.xeGroup.Items.Add(this.btnNewPage);
     this.xeGroup.Items.Add(this.btnPublishDocument);
     this.xeGroup.Items.Add(this.toggleWikiExplorer);
     this.xeGroup.Label = "XWiki Pages";
     this.xeGroup.Name  = "xeGroup";
     //
     // btnNewPage
     //
     this.btnNewPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnNewPage.Description = "Add a new page to the wiki.";
     this.btnNewPage.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_edit_add;
     this.btnNewPage.KeyTip      = "A";
     this.btnNewPage.Label       = "Add Page";
     this.btnNewPage.Name        = "btnNewPage";
     this.btnNewPage.ScreenTip   = "Add a new page to the wiki.";
     this.btnNewPage.ShowImage   = true;
     this.btnNewPage.SuperTip    = "You will be prompted to fill in a dialog box with the wiki space, the page name a" +
                                   "nd title. After that Word will open a new document that will be saved as your ne" +
                                   "w page.";
     this.btnNewPage.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnNewPage_Click);
     //
     // btnPublishDocument
     //
     this.btnPublishDocument.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnPublishDocument.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_apply;
     this.btnPublishDocument.Label       = "Publish Document";
     this.btnPublishDocument.Name        = "btnPublishDocument";
     this.btnPublishDocument.ScreenTip   = "Publish Page to XWiki";
     this.btnPublishDocument.ShowImage   = true;
     this.btnPublishDocument.SuperTip    = "Saves the current document as a wiki page on the XWiki server.";
     this.btnPublishDocument.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnSavePage_Click);
     //
     // toggleWikiExplorer
     //
     this.toggleWikiExplorer.Checked     = true;
     this.toggleWikiExplorer.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.toggleWikiExplorer.Image       = global::XWord.Properties.Resources.Crystal_Clear_filesystem_folder_green;
     this.toggleWikiExplorer.Label       = "Wiki Explorer";
     this.toggleWikiExplorer.Name        = "toggleWikiExplorer";
     this.toggleWikiExplorer.ScreenTip   = "Toggle Wiki Explorer";
     this.toggleWikiExplorer.ShowImage   = true;
     this.toggleWikiExplorer.SuperTip    = "Use this button to show or to hide the wiki explorer.";
     this.toggleWikiExplorer.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.toggleWikiExplorer_Click);
     //
     // attachmentsGroup
     //
     this.attachmentsGroup.Items.Add(this.uploadAttToPage);
     this.attachmentsGroup.Items.Add(this.downloadAtt);
     this.attachmentsGroup.Label = "XWiki Attachments";
     this.attachmentsGroup.Name  = "attachmentsGroup";
     //
     // uploadAttToPage
     //
     this.uploadAttToPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.uploadAttToPage.Description = "Uploads the current document to the wiki.";
     this.uploadAttToPage.Enabled     = false;
     this.uploadAttToPage.Image       = global::XWord.Properties.Resources.Nuvola_apps_download_manager2;
     this.uploadAttToPage.Label       = "Attach Current Document";
     this.uploadAttToPage.Name        = "uploadAttToPage";
     this.uploadAttToPage.ScreenTip   = "Uploads the active document to the wiki.";
     this.uploadAttToPage.ShowImage   = true;
     this.uploadAttToPage.SuperTip    = "The file will be attached to the page that is selected in the wiki explorer.";
     this.uploadAttToPage.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.UploadAttToPage_Click);
     //
     // downloadAtt
     //
     this.downloadAtt.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.downloadAtt.Enabled     = false;
     this.downloadAtt.Image       = global::XWord.Properties.Resources.Nuvola_apps_download_manager;
     this.downloadAtt.Label       = "Download Selected File";
     this.downloadAtt.Name        = "downloadAtt";
     this.downloadAtt.ScreenTip   = "Download the selected attachment.";
     this.downloadAtt.ShowImage   = true;
     this.downloadAtt.SuperTip    = "Downloads the selected attachment to the local file system. To select an attchmen" +
                                    "t you must navigate the wiki using the Wiki explorer.";
     this.downloadAtt.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.downloadAtt_Click);
     //
     // currentDocumentGroup
     //
     this.currentDocumentGroup.Items.Add(this.btnRefresh);
     this.currentDocumentGroup.Items.Add(this.btnPreview);
     this.currentDocumentGroup.Items.Add(this.btnViewActiveDocInBrowser);
     this.currentDocumentGroup.Items.Add(this.toggleAnnotations);
     this.currentDocumentGroup.Label = "Active Document";
     this.currentDocumentGroup.Name  = "currentDocumentGroup";
     //
     // btnRefresh
     //
     this.btnRefresh.ControlSize   = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnRefresh.Label         = "Refresh Document";
     this.btnRefresh.Name          = "btnRefresh";
     this.btnRefresh.OfficeImageId = "BlogCategoriesRefresh";
     this.btnRefresh.ScreenTip     = "Refresh the current document";
     this.btnRefresh.ShowImage     = true;
     this.btnRefresh.SuperTip      = "Refresh the current document.";
     this.btnRefresh.Click        += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnRefresh_Click);
     //
     // btnPreview
     //
     this.btnPreview.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnPreview.Image       = ((System.Drawing.Image)(resources.GetObject("btnPreview.Image")));
     this.btnPreview.Label       = "Preview in Browser";
     this.btnPreview.Name        = "btnPreview";
     this.btnPreview.ScreenTip   = "View the edited page in browser.";
     this.btnPreview.ShowImage   = true;
     this.btnPreview.SuperTip    = "THe selected page will be opened in the system\'s default browser.";
     this.btnPreview.Visible     = false;
     //
     // btnViewActiveDocInBrowser
     //
     this.btnViewActiveDocInBrowser.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnViewActiveDocInBrowser.Image       = global::XWord.Properties.Resources.Nuvola_browser;
     this.btnViewActiveDocInBrowser.Label       = "View Last Saved Version";
     this.btnViewActiveDocInBrowser.Name        = "btnViewActiveDocInBrowser";
     this.btnViewActiveDocInBrowser.ScreenTip   = "View the last saved version of edited page in browser.";
     this.btnViewActiveDocInBrowser.ShowImage   = true;
     this.btnViewActiveDocInBrowser.SuperTip    = "The selected page will be opened in the system\'s default browser.";
     this.btnViewActiveDocInBrowser.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnViewActiveDocInBrowser_Click);
     //
     // toggleAnnotations
     //
     this.toggleAnnotations.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.toggleAnnotations.Image       = global::XWord.Properties.Resources.comment_icon;
     this.toggleAnnotations.Label       = "Show Annotations";
     this.toggleAnnotations.Name        = "toggleAnnotations";
     this.toggleAnnotations.ScreenTip   = "Toggle annotations";
     this.toggleAnnotations.ShowImage   = true;
     this.toggleAnnotations.SuperTip    = "Use this button to show or to hide the annotations.";
     this.toggleAnnotations.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.toggleAnnotations_Click);
     //
     // selectionOptionsGroup
     //
     this.selectionOptionsGroup.Items.Add(this.btnAddPage);
     this.selectionOptionsGroup.Items.Add(this.btnEditPage);
     this.selectionOptionsGroup.Items.Add(this.btnUpload);
     this.selectionOptionsGroup.Items.Add(this.btnDownload);
     this.selectionOptionsGroup.Items.Add(this.btnDownloadAndOpen);
     this.selectionOptionsGroup.Items.Add(this.btnShowPages);
     this.selectionOptionsGroup.Items.Add(this.btnShowAttachments);
     this.selectionOptionsGroup.Items.Add(this.btnViewInBrowser);
     this.selectionOptionsGroup.Label = "Wiki Explorer Selection";
     this.selectionOptionsGroup.Name  = "selectionOptionsGroup";
     //
     // btnAddPage
     //
     this.btnAddPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnAddPage.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_edit_add;
     this.btnAddPage.Label       = "Add Page";
     this.btnAddPage.Name        = "btnAddPage";
     this.btnAddPage.ScreenTip   = "Add a page to the selected space.";
     this.btnAddPage.ShowImage   = true;
     this.btnAddPage.SuperTip    = "You will be prompted to fill in a dialog box with the wiki space, the page name a" +
                                   "nd title. After that Word will open a new document that will be saved as your ne" +
                                   "w page.";
     this.btnAddPage.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnAddPage_Click);
     //
     // btnEditPage
     //
     this.btnEditPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnEditPage.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_edit;
     this.btnEditPage.Label       = "Edit Page";
     this.btnEditPage.Name        = "btnEditPage";
     this.btnEditPage.ScreenTip   = "Edit the selected page.";
     this.btnEditPage.ShowImage   = true;
     this.btnEditPage.SuperTip    = "You will open the selected page in edit mode. A local html file will be used in W" +
                                    "ord and then it will be adapted and saved to the XWiki server.";
     this.btnEditPage.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnEditPage_Click);
     //
     // btnUpload
     //
     this.btnUpload.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnUpload.Image       = global::XWord.Properties.Resources.Nuvola_apps_download_manager2;
     this.btnUpload.Label       = "Upload";
     this.btnUpload.Name        = "btnUpload";
     this.btnUpload.ScreenTip   = "Upload the current document to the selected wiki page.";
     this.btnUpload.ShowImage   = true;
     this.btnUpload.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.UploadAttToPage_Click);
     //
     // btnDownload
     //
     this.btnDownload.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnDownload.Image       = global::XWord.Properties.Resources.Nuvola_apps_download_manager;
     this.btnDownload.Label       = "Download";
     this.btnDownload.Name        = "btnDownload";
     this.btnDownload.ScreenTip   = "Download the selected attachment.";
     this.btnDownload.ShowImage   = true;
     this.btnDownload.SuperTip    = "Downloads the selected attachment to the local file system. To select an attchmen" +
                                    "t you must navigate the wiki using the Wiki explorer.";
     this.btnDownload.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.downloadAtt_Click);
     //
     // btnDownloadAndOpen
     //
     this.btnDownloadAndOpen.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnDownloadAndOpen.Image       = global::XWord.Properties.Resources.Crystal_Clear_download_and_open;
     this.btnDownloadAndOpen.Label       = "Download and Open";
     this.btnDownloadAndOpen.Name        = "btnDownloadAndOpen";
     this.btnDownloadAndOpen.ScreenTip   = "Downloads and opens the selected attachment.";
     this.btnDownloadAndOpen.ShowImage   = true;
     this.btnDownloadAndOpen.SuperTip    = "You will be prompted to select a save location for the attachment. Then the file " +
                                           "will be opened with the default application that is assigned for its type.";
     this.btnDownloadAndOpen.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnDownloadAndOpen_Click);
     //
     // btnShowPages
     //
     this.btnShowPages.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnShowPages.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_view_tree96;
     this.btnShowPages.Label       = "Show Pages";
     this.btnShowPages.Name        = "btnShowPages";
     this.btnShowPages.ScreenTip   = "Shows the pages for the selected space.";
     this.btnShowPages.ShowImage   = true;
     this.btnShowPages.SuperTip    = "The selected space node will be expanded in order to see the pages.";
     this.btnShowPages.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnShowPages_Click);
     //
     // btnShowAttachments
     //
     this.btnShowAttachments.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnShowAttachments.Image       = global::XWord.Properties.Resources.Crystal_Clear_action_view_tree96;
     this.btnShowAttachments.Label       = "Show Attachments";
     this.btnShowAttachments.Name        = "btnShowAttachments";
     this.btnShowAttachments.ScreenTip   = "Shows the attachments for the selected page.";
     this.btnShowAttachments.ShowImage   = true;
     this.btnShowAttachments.SuperTip    = "The selected page node will be expanded in order to see the attachments.";
     this.btnShowAttachments.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnShowAttachments_Click);
     //
     // btnViewInBrowser
     //
     this.btnViewInBrowser.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnViewInBrowser.Image       = global::XWord.Properties.Resources.browser;
     this.btnViewInBrowser.Label       = "View in Browser";
     this.btnViewInBrowser.Name        = "btnViewInBrowser";
     this.btnViewInBrowser.ScreenTip   = "View the selected page in browser.";
     this.btnViewInBrowser.ShowImage   = true;
     this.btnViewInBrowser.SuperTip    = "THe selected page will be opened in the system\'s default browser.";
     this.btnViewInBrowser.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnViewInBrowser_Click);
     //
     // OptionsGroup
     //
     this.OptionsGroup.DialogLauncher = ribbonDialogLauncher1;
     this.OptionsGroup.Items.Add(this.btnXWordOptions);
     this.OptionsGroup.Items.Add(this.syncSaving);
     this.OptionsGroup.Items.Add(this.dropDownSyntax);
     this.OptionsGroup.Items.Add(this.dropDownSaveFormat);
     this.OptionsGroup.Items.Add(this.separator1);
     this.OptionsGroup.Items.Add(this.btnAboutXWord);
     this.OptionsGroup.Label = "XWord";
     this.OptionsGroup.Name  = "OptionsGroup";
     //
     // btnXWordOptions
     //
     this.btnXWordOptions.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnXWordOptions.Image       = global::XWord.Properties.Resources.Crystal_Clear_app_package_settings;
     this.btnXWordOptions.Label       = "XWord Options";
     this.btnXWordOptions.Name        = "btnXWordOptions";
     this.btnXWordOptions.ScreenTip   = "Shows the XWord Options dialog.";
     this.btnXWordOptions.ShowImage   = true;
     this.btnXWordOptions.SuperTip    = "Here you can setup a connection to a XWiki server or select the locations for you" +
                                        "r local wiki pages.";
     this.btnXWordOptions.Click += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.Show_ConnectionDialog);
     //
     // syncSaving
     //
     this.syncSaving.Enabled = false;
     this.syncSaving.Label   = "Synchronize saving with Word";
     this.syncSaving.Name    = "syncSaving";
     this.syncSaving.Visible = false;
     this.syncSaving.Click  += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.SyncSaving_Click);
     //
     // dropDownSyntax
     //
     ribbonDropDownItem1.Label = "XWiki 2.0";
     ribbonDropDownItem2.Label = "XHTML";
     this.dropDownSyntax.Items.Add(ribbonDropDownItem1);
     this.dropDownSyntax.Items.Add(ribbonDropDownItem2);
     this.dropDownSyntax.Label             = "Server Syntax:       ";
     this.dropDownSyntax.Name              = "dropDownSyntax";
     this.dropDownSyntax.ScreenTip         = "The syntax used to save the page on the XWiki server.";
     this.dropDownSyntax.Visible           = false;
     this.dropDownSyntax.SelectionChanged += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSyntax_SelectionChanged);
     //
     // dropDownSaveFormat
     //
     ribbonDropDownItem3.Label = "HTML";
     ribbonDropDownItem4.Label = "Filtered HTML";
     this.dropDownSaveFormat.Items.Add(ribbonDropDownItem3);
     this.dropDownSaveFormat.Items.Add(ribbonDropDownItem4);
     this.dropDownSaveFormat.Label             = "Local Save Format:";
     this.dropDownSaveFormat.Name              = "dropDownSaveFormat";
     this.dropDownSaveFormat.ScreenTip         = "The format used to save your local wiki pages.";
     this.dropDownSaveFormat.Visible           = false;
     this.dropDownSaveFormat.ItemsLoading     += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSaveFormat_ItemsLoading);
     this.dropDownSaveFormat.SelectionChanged += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSaveFormat_SelectionChanged);
     //
     // separator1
     //
     this.separator1.Name = "separator1";
     //
     // btnAboutXWord
     //
     this.btnAboutXWord.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.btnAboutXWord.Image       = global::XWord.Properties.Resources.XWiki;
     this.btnAboutXWord.Label       = "About XWord";
     this.btnAboutXWord.Name        = "btnAboutXWord";
     this.btnAboutXWord.ScreenTip   = "About XWord";
     this.btnAboutXWord.ShowImage   = true;
     this.btnAboutXWord.SuperTip    = "Displays a summay about this Word Extension.";
     this.btnAboutXWord.Click      += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnAboutXWord_Click);
     //
     // XWikiRibbon
     //
     this.Name       = "XWikiRibbon";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.tab1);
     this.Tabs.Add(this.xWikiTab);
     this.Load += new System.EventHandler <Microsoft.Office.Tools.Ribbon.RibbonUIEventArgs>(this.XWikiRibbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.xWikiTab.ResumeLayout(false);
     this.xWikiTab.PerformLayout();
     this.xeGroup.ResumeLayout(false);
     this.xeGroup.PerformLayout();
     this.attachmentsGroup.ResumeLayout(false);
     this.attachmentsGroup.PerformLayout();
     this.currentDocumentGroup.ResumeLayout(false);
     this.currentDocumentGroup.PerformLayout();
     this.selectionOptionsGroup.ResumeLayout(false);
     this.selectionOptionsGroup.PerformLayout();
     this.OptionsGroup.ResumeLayout(false);
     this.OptionsGroup.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1             = this.Factory.CreateRibbonTab();
     this.group1           = this.Factory.CreateRibbonGroup();
     this.buttonGroup3     = this.Factory.CreateRibbonButtonGroup();
     this.btnPhonemes      = this.Factory.CreateRibbonButton();
     this.btnMuettes       = this.Factory.CreateRibbonButton();
     this.btnSyls          = this.Factory.CreateRibbonButton();
     this.btnArcs          = this.Factory.CreateRibbonButton();
     this.btnEcarter       = this.Factory.CreateRibbonButton();
     this.buttonGroup1     = this.Factory.CreateRibbonButtonGroup();
     this.btnMots          = this.Factory.CreateRibbonButton();
     this.btnLignes        = this.Factory.CreateRibbonButton();
     this.btnBPDQ          = this.Factory.CreateRibbonButton();
     this.btnNettoyageArcs = this.Factory.CreateRibbonButton();
     this.btnResserrer     = this.Factory.CreateRibbonButton();
     this.buttonGroup2     = this.Factory.CreateRibbonButtonGroup();
     this.btnVoyCons       = this.Factory.CreateRibbonButton();
     this.btnDuo           = this.Factory.CreateRibbonButton();
     this.btnNoir          = this.Factory.CreateRibbonButton();
     this.btnPonct         = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.buttonGroup3.SuspendLayout();
     this.buttonGroup1.SuspendLayout();
     this.buttonGroup2.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabHome";
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabHome";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     ribbonDialogLauncherImpl1.ScreenTip = "Configuration";
     ribbonDialogLauncherImpl1.SuperTip  = "Ouvre le panneau de configuration";
     this.group1.DialogLauncher          = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.buttonGroup3);
     this.group1.Items.Add(this.buttonGroup1);
     this.group1.Items.Add(this.buttonGroup2);
     this.group1.Label = "Coloriƨation";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.grpDialogLauncher_Click);
     //
     // buttonGroup3
     //
     this.buttonGroup3.Items.Add(this.btnPhonemes);
     this.buttonGroup3.Items.Add(this.btnMuettes);
     this.buttonGroup3.Items.Add(this.btnSyls);
     this.buttonGroup3.Items.Add(this.btnArcs);
     this.buttonGroup3.Items.Add(this.btnEcarter);
     this.buttonGroup3.Name = "buttonGroup3";
     //
     // btnPhonemes
     //
     this.btnPhonemes.Image     = global::ColorizationWord.Properties.Resources.phon_carré_30;
     this.btnPhonemes.Label     = "Phonèmes";
     this.btnPhonemes.Name      = "btnPhonemes";
     this.btnPhonemes.ScreenTip = "Phonèmes";
     this.btnPhonemes.ShowImage = true;
     this.btnPhonemes.ShowLabel = false;
     this.btnPhonemes.SuperTip  = "Colorise les phonèmes dans le texte sélectionné.";
     this.btnPhonemes.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnPhonemes_Click);
     //
     // btnMuettes
     //
     this.btnMuettes.Image     = global::ColorizationWord.Properties.Resources.l_muettes_26;
     this.btnMuettes.Label     = "Muettes";
     this.btnMuettes.Name      = "btnMuettes";
     this.btnMuettes.ScreenTip = "Muettes";
     this.btnMuettes.ShowImage = true;
     this.btnMuettes.ShowLabel = false;
     this.btnMuettes.SuperTip  = "Colorise les lettres muettes dans le texte sélectionné.";
     this.btnMuettes.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnMuettes_Click);
     //
     // btnSyls
     //
     this.btnSyls.Image     = global::ColorizationWord.Properties.Resources.syll_dys_35;
     this.btnSyls.Label     = "Syllabes";
     this.btnSyls.Name      = "btnSyls";
     this.btnSyls.ScreenTip = "Syllabes";
     this.btnSyls.ShowImage = true;
     this.btnSyls.ShowLabel = false;
     this.btnSyls.SuperTip  = "Colorise les syllabes dans le texte sélectionné.";
     this.btnSyls.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnSyl_Click);
     //
     // btnArcs
     //
     this.btnArcs.Image     = global::ColorizationWord.Properties.Resources.syll_26;
     this.btnArcs.Label     = "Arcs";
     this.btnArcs.Name      = "btnArcs";
     this.btnArcs.ScreenTip = "Arcs sous les syllabes";
     this.btnArcs.ShowImage = true;
     this.btnArcs.ShowLabel = false;
     this.btnArcs.SuperTip  = "Trace un arc sous chaque syllabe du texte sélectionné.";
     this.btnArcs.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnArcs_Click);
     //
     // btnEcarter
     //
     this.btnEcarter.Image     = global::ColorizationWord.Properties.Resources.enlarge_26;
     this.btnEcarter.Label     = "Ecarter";
     this.btnEcarter.Name      = "btnEcarter";
     this.btnEcarter.ScreenTip = "Écarter";
     this.btnEcarter.ShowImage = true;
     this.btnEcarter.ShowLabel = false;
     this.btnEcarter.SuperTip  = "Augmenter l\'espace entre les mots";
     this.btnEcarter.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnEcarter_Click);
     //
     // buttonGroup1
     //
     this.buttonGroup1.Items.Add(this.btnMots);
     this.buttonGroup1.Items.Add(this.btnLignes);
     this.buttonGroup1.Items.Add(this.btnBPDQ);
     this.buttonGroup1.Items.Add(this.btnNettoyageArcs);
     this.buttonGroup1.Items.Add(this.btnResserrer);
     this.buttonGroup1.Name = "buttonGroup1";
     //
     // btnMots
     //
     this.btnMots.Image     = global::ColorizationWord.Properties.Resources.mots_30;
     this.btnMots.Label     = "Mots";
     this.btnMots.Name      = "btnMots";
     this.btnMots.ScreenTip = "Mots";
     this.btnMots.ShowImage = true;
     this.btnMots.ShowLabel = false;
     this.btnMots.SuperTip  = "Colorise les mots dans le texte sélectionné.";
     this.btnMots.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnMots_Click);
     //
     // btnLignes
     //
     this.btnLignes.Image     = global::ColorizationWord.Properties.Resources.lines_26;
     this.btnLignes.Label     = "Lignes";
     this.btnLignes.Name      = "btnLignes";
     this.btnLignes.ScreenTip = "Lignes";
     this.btnLignes.ShowImage = true;
     this.btnLignes.ShowLabel = false;
     this.btnLignes.SuperTip  = "Colorise les lignes dans le texte sélectionné.";
     this.btnLignes.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnLignes_Click);
     //
     // btnBPDQ
     //
     this.btnBPDQ.Image     = global::ColorizationWord.Properties.Resources.bdpq1;
     this.btnBPDQ.Label     = "BPDQ";
     this.btnBPDQ.Name      = "btnBPDQ";
     this.btnBPDQ.ScreenTip = "Lettres (bpdq)";
     this.btnBPDQ.ShowImage = true;
     this.btnBPDQ.ShowLabel = false;
     this.btnBPDQ.SuperTip  = "Colorise les lettres choisies dans le texte sélectionné.";
     this.btnBPDQ.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnBDPQ_Click);
     //
     // btnNettoyageArcs
     //
     this.btnNettoyageArcs.Image     = global::ColorizationWord.Properties.Resources.cleaner_26;
     this.btnNettoyageArcs.Label     = "NettoyageArcs";
     this.btnNettoyageArcs.Name      = "btnNettoyageArcs";
     this.btnNettoyageArcs.ScreenTip = "Effacer arcs";
     this.btnNettoyageArcs.ShowImage = true;
     this.btnNettoyageArcs.ShowLabel = false;
     this.btnNettoyageArcs.SuperTip  = "Efface les arcs dont le point d\'ancrage est sélectionné.";
     this.btnNettoyageArcs.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnNettoyageArcs_Click);
     //
     // btnResserrer
     //
     this.btnResserrer.Image     = global::ColorizationWord.Properties.Resources.Shrink_red_sq26;
     this.btnResserrer.Label     = "Resserrer";
     this.btnResserrer.Name      = "btnResserrer";
     this.btnResserrer.ScreenTip = "Resserrer";
     this.btnResserrer.ShowImage = true;
     this.btnResserrer.ShowLabel = false;
     this.btnResserrer.SuperTip  = "Diminuer l\'écart entre les mots";
     this.btnResserrer.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnResserrer_Click);
     //
     // buttonGroup2
     //
     this.buttonGroup2.Items.Add(this.btnVoyCons);
     this.buttonGroup2.Items.Add(this.btnDuo);
     this.buttonGroup2.Items.Add(this.btnNoir);
     this.buttonGroup2.Items.Add(this.btnPonct);
     this.buttonGroup2.Name = "buttonGroup2";
     //
     // btnVoyCons
     //
     this.btnVoyCons.Image     = global::ColorizationWord.Properties.Resources.voycons_26;
     this.btnVoyCons.Label     = "button1";
     this.btnVoyCons.Name      = "btnVoyCons";
     this.btnVoyCons.ScreenTip = "Voyelles-Consonnes";
     this.btnVoyCons.ShowImage = true;
     this.btnVoyCons.ShowLabel = false;
     this.btnVoyCons.SuperTip  = "Colorise les voyelles et les consonnes dans le texte sélectionné";
     this.btnVoyCons.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnVoyCons_Click);
     //
     // btnDuo
     //
     this.btnDuo.Image     = global::ColorizationWord.Properties.Resources._2_16;
     this.btnDuo.Label     = "Duo";
     this.btnDuo.Name      = "btnDuo";
     this.btnDuo.ScreenTip = "Duo";
     this.btnDuo.ShowImage = true;
     this.btnDuo.ShowLabel = false;
     this.btnDuo.SuperTip  = "Le texte sélectionné est formaté en alternance pour deux lecteurs.";
     this.btnDuo.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnDuo_Click);
     //
     // btnNoir
     //
     this.btnNoir.Image     = global::ColorizationWord.Properties.Resources.black_26;
     this.btnNoir.Label     = "Noir";
     this.btnNoir.Name      = "btnNoir";
     this.btnNoir.ScreenTip = "Noir";
     this.btnNoir.ShowImage = true;
     this.btnNoir.ShowLabel = false;
     this.btnNoir.SuperTip  = "Met le texte sélectionné en noir, sans gras, italique ou souligné.";
     this.btnNoir.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnNoir_Click);
     //
     // btnPonct
     //
     this.btnPonct.Image     = global::ColorizationWord.Properties.Resources.phrase_16;
     this.btnPonct.Label     = "Ponctuation";
     this.btnPonct.Name      = "btnPonct";
     this.btnPonct.ScreenTip = "Ponctuation";
     this.btnPonct.ShowImage = true;
     this.btnPonct.ShowLabel = false;
     this.btnPonct.SuperTip  = "Coloriƨe les caractères spéciaux";
     this.btnPonct.Click    += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.btnPonct_Click);
     //
     // WordRibbon
     //
     this.Name       = "WordRibbon";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.buttonGroup3.ResumeLayout(false);
     this.buttonGroup3.PerformLayout();
     this.buttonGroup1.ResumeLayout(false);
     this.buttonGroup1.PerformLayout();
     this.buttonGroup2.ResumeLayout(false);
     this.buttonGroup2.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XWikiRibbon));
            Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncher1 = new Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher();
            Microsoft.Office.Tools.Ribbon.RibbonDropDownItem ribbonDropDownItem1 = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
            Microsoft.Office.Tools.Ribbon.RibbonDropDownItem ribbonDropDownItem2 = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
            Microsoft.Office.Tools.Ribbon.RibbonDropDownItem ribbonDropDownItem3 = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
            Microsoft.Office.Tools.Ribbon.RibbonDropDownItem ribbonDropDownItem4 = new Microsoft.Office.Tools.Ribbon.RibbonDropDownItem();
            this.tab1 = new Microsoft.Office.Tools.Ribbon.RibbonTab();
            this.xWikiTab = new Microsoft.Office.Tools.Ribbon.RibbonTab();
            this.xeGroup = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.btnNewPage = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnPublishDocument = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.toggleWikiExplorer = new Microsoft.Office.Tools.Ribbon.RibbonToggleButton();
            this.attachmentsGroup = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.uploadAttToPage = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.downloadAtt = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.currentDocumentGroup = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.btnRefresh = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnPreview = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnViewActiveDocInBrowser = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.toggleAnnotations = new Microsoft.Office.Tools.Ribbon.RibbonToggleButton();
            this.selectionOptionsGroup = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.btnAddPage = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnEditPage = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnUpload = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnDownload = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnDownloadAndOpen = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnShowPages = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnShowAttachments = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnViewInBrowser = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.OptionsGroup = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.btnXWordOptions = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.syncSaving = new Microsoft.Office.Tools.Ribbon.RibbonCheckBox();
            this.dropDownSyntax = new Microsoft.Office.Tools.Ribbon.RibbonDropDown();
            this.dropDownSaveFormat = new Microsoft.Office.Tools.Ribbon.RibbonDropDown();
            this.separator1 = new Microsoft.Office.Tools.Ribbon.RibbonSeparator();
            this.btnAboutXWord = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.tab1.SuspendLayout();
            this.xWikiTab.SuspendLayout();
            this.xeGroup.SuspendLayout();
            this.attachmentsGroup.SuspendLayout();
            this.currentDocumentGroup.SuspendLayout();
            this.selectionOptionsGroup.SuspendLayout();
            this.OptionsGroup.SuspendLayout();
            this.SuspendLayout();
            // 
            // tab1
            // 
            this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
            this.tab1.Label = "TabAddIns";
            this.tab1.Name = "tab1";
            this.tab1.Visible = false;
            // 
            // xWikiTab
            // 
            this.xWikiTab.Groups.Add(this.xeGroup);
            this.xWikiTab.Groups.Add(this.attachmentsGroup);
            this.xWikiTab.Groups.Add(this.currentDocumentGroup);
            this.xWikiTab.Groups.Add(this.selectionOptionsGroup);
            this.xWikiTab.Groups.Add(this.OptionsGroup);
            this.xWikiTab.KeyTip = "X";
            this.xWikiTab.Label = "XWord";
            this.xWikiTab.Name = "xWikiTab";
            // 
            // xeGroup
            // 
            this.xeGroup.Items.Add(this.btnNewPage);
            this.xeGroup.Items.Add(this.btnPublishDocument);
            this.xeGroup.Items.Add(this.toggleWikiExplorer);
            this.xeGroup.Label = "XWiki Pages";
            this.xeGroup.Name = "xeGroup";
            // 
            // btnNewPage
            // 
            this.btnNewPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnNewPage.Description = "Add a new page to the wiki.";
            this.btnNewPage.Image = global::XWord.Properties.Resources.Crystal_Clear_action_edit_add;
            this.btnNewPage.KeyTip = "A";
            this.btnNewPage.Label = "Add Page";
            this.btnNewPage.Name = "btnNewPage";
            this.btnNewPage.ScreenTip = "Add a new page to the wiki.";
            this.btnNewPage.ShowImage = true;
            this.btnNewPage.SuperTip = "You will be prompted to fill in a dialog box with the wiki space, the page name a" +
                "nd title. After that Word will open a new document that will be saved as your ne" +
                "w page.";
            this.btnNewPage.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnNewPage_Click);
            // 
            // btnPublishDocument
            // 
            this.btnPublishDocument.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnPublishDocument.Image = global::XWord.Properties.Resources.Crystal_Clear_action_apply;
            this.btnPublishDocument.Label = "Publish Document";
            this.btnPublishDocument.Name = "btnPublishDocument";
            this.btnPublishDocument.ScreenTip = "Publish Page to XWiki";
            this.btnPublishDocument.ShowImage = true;
            this.btnPublishDocument.SuperTip = "Saves the current document as a wiki page on the XWiki server.";
            this.btnPublishDocument.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnSavePage_Click);
            // 
            // toggleWikiExplorer
            // 
            this.toggleWikiExplorer.Checked = true;
            this.toggleWikiExplorer.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.toggleWikiExplorer.Image = global::XWord.Properties.Resources.Crystal_Clear_filesystem_folder_green;
            this.toggleWikiExplorer.Label = "Wiki Explorer";
            this.toggleWikiExplorer.Name = "toggleWikiExplorer";
            this.toggleWikiExplorer.ScreenTip = "Toggle Wiki Explorer";
            this.toggleWikiExplorer.ShowImage = true;
            this.toggleWikiExplorer.SuperTip = "Use this button to show or to hide the wiki explorer.";
            this.toggleWikiExplorer.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.toggleWikiExplorer_Click);
            // 
            // attachmentsGroup
            // 
            this.attachmentsGroup.Items.Add(this.uploadAttToPage);
            this.attachmentsGroup.Items.Add(this.downloadAtt);
            this.attachmentsGroup.Label = "XWiki Attachments";
            this.attachmentsGroup.Name = "attachmentsGroup";
            // 
            // uploadAttToPage
            // 
            this.uploadAttToPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.uploadAttToPage.Description = "Uploads the current document to the wiki.";
            this.uploadAttToPage.Enabled = false;
            this.uploadAttToPage.Image = global::XWord.Properties.Resources.Nuvola_apps_download_manager2;
            this.uploadAttToPage.Label = "Attach Current Document";
            this.uploadAttToPage.Name = "uploadAttToPage";
            this.uploadAttToPage.ScreenTip = "Uploads the active document to the wiki.";
            this.uploadAttToPage.ShowImage = true;
            this.uploadAttToPage.SuperTip = "The file will be attached to the page that is selected in the wiki explorer.";
            this.uploadAttToPage.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.UploadAttToPage_Click);
            // 
            // downloadAtt
            // 
            this.downloadAtt.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.downloadAtt.Enabled = false;
            this.downloadAtt.Image = global::XWord.Properties.Resources.Nuvola_apps_download_manager;
            this.downloadAtt.Label = "Download Selected File";
            this.downloadAtt.Name = "downloadAtt";
            this.downloadAtt.ScreenTip = "Download the selected attachment.";
            this.downloadAtt.ShowImage = true;
            this.downloadAtt.SuperTip = "Downloads the selected attachment to the local file system. To select an attchmen" +
                "t you must navigate the wiki using the Wiki explorer.";
            this.downloadAtt.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.downloadAtt_Click);
            // 
            // currentDocumentGroup
            // 
            this.currentDocumentGroup.Items.Add(this.btnRefresh);
            this.currentDocumentGroup.Items.Add(this.btnPreview);
            this.currentDocumentGroup.Items.Add(this.btnViewActiveDocInBrowser);
            this.currentDocumentGroup.Items.Add(this.toggleAnnotations);
            this.currentDocumentGroup.Label = "Active Document";
            this.currentDocumentGroup.Name = "currentDocumentGroup";
            // 
            // btnRefresh
            // 
            this.btnRefresh.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnRefresh.Label = "Refresh Document";
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.OfficeImageId = "BlogCategoriesRefresh";
            this.btnRefresh.ScreenTip = "Refresh the current document";
            this.btnRefresh.ShowImage = true;
            this.btnRefresh.SuperTip = "Refresh the current document.";
            this.btnRefresh.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnRefresh_Click);
            // 
            // btnPreview
            // 
            this.btnPreview.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnPreview.Image = ((System.Drawing.Image)(resources.GetObject("btnPreview.Image")));
            this.btnPreview.Label = "Preview in Browser";
            this.btnPreview.Name = "btnPreview";
            this.btnPreview.ScreenTip = "View the edited page in browser.";
            this.btnPreview.ShowImage = true;
            this.btnPreview.SuperTip = "THe selected page will be opened in the system\'s default browser.";
            this.btnPreview.Visible = false;
            // 
            // btnViewActiveDocInBrowser
            // 
            this.btnViewActiveDocInBrowser.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnViewActiveDocInBrowser.Image = global::XWord.Properties.Resources.Nuvola_browser;
            this.btnViewActiveDocInBrowser.Label = "View Last Saved Version";
            this.btnViewActiveDocInBrowser.Name = "btnViewActiveDocInBrowser";
            this.btnViewActiveDocInBrowser.ScreenTip = "View the last saved version of edited page in browser.";
            this.btnViewActiveDocInBrowser.ShowImage = true;
            this.btnViewActiveDocInBrowser.SuperTip = "The selected page will be opened in the system\'s default browser.";
            this.btnViewActiveDocInBrowser.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnViewActiveDocInBrowser_Click);
            // 
            // toggleAnnotations
            // 
            this.toggleAnnotations.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.toggleAnnotations.Image = global::XWord.Properties.Resources.comment_icon;
            this.toggleAnnotations.Label = "Show Annotations";
            this.toggleAnnotations.Name = "toggleAnnotations";
            this.toggleAnnotations.ScreenTip = "Toggle annotations";
            this.toggleAnnotations.ShowImage = true;
            this.toggleAnnotations.SuperTip = "Use this button to show or to hide the annotations.";
            this.toggleAnnotations.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.toggleAnnotations_Click);
            // 
            // selectionOptionsGroup
            // 
            this.selectionOptionsGroup.Items.Add(this.btnAddPage);
            this.selectionOptionsGroup.Items.Add(this.btnEditPage);
            this.selectionOptionsGroup.Items.Add(this.btnUpload);
            this.selectionOptionsGroup.Items.Add(this.btnDownload);
            this.selectionOptionsGroup.Items.Add(this.btnDownloadAndOpen);
            this.selectionOptionsGroup.Items.Add(this.btnShowPages);
            this.selectionOptionsGroup.Items.Add(this.btnShowAttachments);
            this.selectionOptionsGroup.Items.Add(this.btnViewInBrowser);
            this.selectionOptionsGroup.Label = "Wiki Explorer Selection";
            this.selectionOptionsGroup.Name = "selectionOptionsGroup";
            // 
            // btnAddPage
            // 
            this.btnAddPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnAddPage.Image = global::XWord.Properties.Resources.Crystal_Clear_action_edit_add;
            this.btnAddPage.Label = "Add Page";
            this.btnAddPage.Name = "btnAddPage";
            this.btnAddPage.ScreenTip = "Add a page to the selected space.";
            this.btnAddPage.ShowImage = true;
            this.btnAddPage.SuperTip = "You will be prompted to fill in a dialog box with the wiki space, the page name a" +
                "nd title. After that Word will open a new document that will be saved as your ne" +
                "w page.";
            this.btnAddPage.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnAddPage_Click);
            // 
            // btnEditPage
            // 
            this.btnEditPage.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnEditPage.Image = global::XWord.Properties.Resources.Crystal_Clear_action_edit;
            this.btnEditPage.Label = "Edit Page";
            this.btnEditPage.Name = "btnEditPage";
            this.btnEditPage.ScreenTip = "Edit the selected page.";
            this.btnEditPage.ShowImage = true;
            this.btnEditPage.SuperTip = "You will open the selected page in edit mode. A local html file will be used in W" +
                "ord and then it will be adapted and saved to the XWiki server.";
            this.btnEditPage.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnEditPage_Click);
            // 
            // btnUpload
            // 
            this.btnUpload.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnUpload.Image = global::XWord.Properties.Resources.Nuvola_apps_download_manager2;
            this.btnUpload.Label = "Upload";
            this.btnUpload.Name = "btnUpload";
            this.btnUpload.ScreenTip = "Upload the current document to the selected wiki page.";
            this.btnUpload.ShowImage = true;
            this.btnUpload.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.UploadAttToPage_Click);
            // 
            // btnDownload
            // 
            this.btnDownload.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnDownload.Image = global::XWord.Properties.Resources.Nuvola_apps_download_manager;
            this.btnDownload.Label = "Download";
            this.btnDownload.Name = "btnDownload";
            this.btnDownload.ScreenTip = "Download the selected attachment.";
            this.btnDownload.ShowImage = true;
            this.btnDownload.SuperTip = "Downloads the selected attachment to the local file system. To select an attchmen" +
                "t you must navigate the wiki using the Wiki explorer.";
            this.btnDownload.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.downloadAtt_Click);
            // 
            // btnDownloadAndOpen
            // 
            this.btnDownloadAndOpen.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnDownloadAndOpen.Image = global::XWord.Properties.Resources.Crystal_Clear_download_and_open;
            this.btnDownloadAndOpen.Label = "Download and Open";
            this.btnDownloadAndOpen.Name = "btnDownloadAndOpen";
            this.btnDownloadAndOpen.ScreenTip = "Downloads and opens the selected attachment.";
            this.btnDownloadAndOpen.ShowImage = true;
            this.btnDownloadAndOpen.SuperTip = "You will be prompted to select a save location for the attachment. Then the file " +
                "will be opened with the default application that is assigned for its type.";
            this.btnDownloadAndOpen.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnDownloadAndOpen_Click);
            // 
            // btnShowPages
            // 
            this.btnShowPages.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnShowPages.Image = global::XWord.Properties.Resources.Crystal_Clear_action_view_tree96;
            this.btnShowPages.Label = "Show Pages";
            this.btnShowPages.Name = "btnShowPages";
            this.btnShowPages.ScreenTip = "Shows the pages for the selected space.";
            this.btnShowPages.ShowImage = true;
            this.btnShowPages.SuperTip = "The selected space node will be expanded in order to see the pages.";
            this.btnShowPages.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnShowPages_Click);
            // 
            // btnShowAttachments
            // 
            this.btnShowAttachments.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnShowAttachments.Image = global::XWord.Properties.Resources.Crystal_Clear_action_view_tree96;
            this.btnShowAttachments.Label = "Show Attachments";
            this.btnShowAttachments.Name = "btnShowAttachments";
            this.btnShowAttachments.ScreenTip = "Shows the attachments for the selected page.";
            this.btnShowAttachments.ShowImage = true;
            this.btnShowAttachments.SuperTip = "The selected page node will be expanded in order to see the attachments.";
            this.btnShowAttachments.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnShowAttachments_Click);
            // 
            // btnViewInBrowser
            // 
            this.btnViewInBrowser.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnViewInBrowser.Image = global::XWord.Properties.Resources.browser;
            this.btnViewInBrowser.Label = "View in Browser";
            this.btnViewInBrowser.Name = "btnViewInBrowser";
            this.btnViewInBrowser.ScreenTip = "View the selected page in browser.";
            this.btnViewInBrowser.ShowImage = true;
            this.btnViewInBrowser.SuperTip = "THe selected page will be opened in the system\'s default browser.";
            this.btnViewInBrowser.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnViewInBrowser_Click);
            // 
            // OptionsGroup
            // 
            this.OptionsGroup.DialogLauncher = ribbonDialogLauncher1;
            this.OptionsGroup.Items.Add(this.btnXWordOptions);
            this.OptionsGroup.Items.Add(this.syncSaving);
            this.OptionsGroup.Items.Add(this.dropDownSyntax);
            this.OptionsGroup.Items.Add(this.dropDownSaveFormat);
            this.OptionsGroup.Items.Add(this.separator1);
            this.OptionsGroup.Items.Add(this.btnAboutXWord);
            this.OptionsGroup.Label = "XWord";
            this.OptionsGroup.Name = "OptionsGroup";
            // 
            // btnXWordOptions
            // 
            this.btnXWordOptions.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnXWordOptions.Image = global::XWord.Properties.Resources.Crystal_Clear_app_package_settings;
            this.btnXWordOptions.Label = "XWord Options";
            this.btnXWordOptions.Name = "btnXWordOptions";
            this.btnXWordOptions.ScreenTip = "Shows the XWord Options dialog.";
            this.btnXWordOptions.ShowImage = true;
            this.btnXWordOptions.SuperTip = "Here you can setup a connection to a XWiki server or select the locations for you" +
                "r local wiki pages.";
            this.btnXWordOptions.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.Show_ConnectionDialog);
            // 
            // syncSaving
            // 
            this.syncSaving.Enabled = false;
            this.syncSaving.Label = "Synchronize saving with Word";
            this.syncSaving.Name = "syncSaving";
            this.syncSaving.Visible = false;
            this.syncSaving.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.SyncSaving_Click);
            // 
            // dropDownSyntax
            // 
            ribbonDropDownItem1.Label = "XWiki 2.0";
            ribbonDropDownItem2.Label = "XHTML";
            this.dropDownSyntax.Items.Add(ribbonDropDownItem1);
            this.dropDownSyntax.Items.Add(ribbonDropDownItem2);
            this.dropDownSyntax.Label = "Server Syntax:       ";
            this.dropDownSyntax.Name = "dropDownSyntax";
            this.dropDownSyntax.ScreenTip = "The syntax used to save the page on the XWiki server.";
            this.dropDownSyntax.Visible = false;
            this.dropDownSyntax.SelectionChanged += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSyntax_SelectionChanged);
            // 
            // dropDownSaveFormat
            // 
            ribbonDropDownItem3.Label = "HTML";
            ribbonDropDownItem4.Label = "Filtered HTML";
            this.dropDownSaveFormat.Items.Add(ribbonDropDownItem3);
            this.dropDownSaveFormat.Items.Add(ribbonDropDownItem4);
            this.dropDownSaveFormat.Label = "Local Save Format:";
            this.dropDownSaveFormat.Name = "dropDownSaveFormat";
            this.dropDownSaveFormat.ScreenTip = "The format used to save your local wiki pages.";
            this.dropDownSaveFormat.Visible = false;
            this.dropDownSaveFormat.ItemsLoading += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSaveFormat_ItemsLoading);
            this.dropDownSaveFormat.SelectionChanged += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.dropDownSaveFormat_SelectionChanged);
            // 
            // separator1
            // 
            this.separator1.Name = "separator1";
            // 
            // btnAboutXWord
            // 
            this.btnAboutXWord.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnAboutXWord.Image = global::XWord.Properties.Resources.XWiki;
            this.btnAboutXWord.Label = "About XWord";
            this.btnAboutXWord.Name = "btnAboutXWord";
            this.btnAboutXWord.ScreenTip = "About XWord";
            this.btnAboutXWord.ShowImage = true;
            this.btnAboutXWord.SuperTip = "Displays a summay about this Word Extension.";
            this.btnAboutXWord.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnAboutXWord_Click);
            // 
            // XWikiRibbon
            // 
            this.Name = "XWikiRibbon";
            this.RibbonType = "Microsoft.Word.Document";
            this.Tabs.Add(this.tab1);
            this.Tabs.Add(this.xWikiTab);
            this.Load += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonUIEventArgs>(this.XWikiRibbon_Load);
            this.tab1.ResumeLayout(false);
            this.tab1.PerformLayout();
            this.xWikiTab.ResumeLayout(false);
            this.xWikiTab.PerformLayout();
            this.xeGroup.ResumeLayout(false);
            this.xeGroup.PerformLayout();
            this.attachmentsGroup.ResumeLayout(false);
            this.attachmentsGroup.PerformLayout();
            this.currentDocumentGroup.ResumeLayout(false);
            this.currentDocumentGroup.PerformLayout();
            this.selectionOptionsGroup.ResumeLayout(false);
            this.selectionOptionsGroup.PerformLayout();
            this.OptionsGroup.ResumeLayout(false);
            this.OptionsGroup.PerformLayout();
            this.ResumeLayout(false);

        }
Exemplo n.º 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager     resources = new System.ComponentModel.ComponentResourceManager(typeof(Ribbon1));
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1   = this.Factory.CreateRibbonTab();
     this.group1 = this.Factory.CreateRibbonGroup();
     this.buttonConnectToEngine = this.Factory.CreateRibbonButton();
     this.editBox1       = this.Factory.CreateRibbonEditBox();
     this.group2         = this.Factory.CreateRibbonGroup();
     this.dropDown1      = this.Factory.CreateRibbonDropDown();
     this.group3         = this.Factory.CreateRibbonGroup();
     this.dropDown2      = this.Factory.CreateRibbonDropDown();
     this.group4         = this.Factory.CreateRibbonGroup();
     this.dropDown3      = this.Factory.CreateRibbonDropDown();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.group2.SuspendLayout();
     this.group3.SuspendLayout();
     this.group4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.Groups.Add(this.group1);
     this.tab1.Groups.Add(this.group2);
     this.tab1.Groups.Add(this.group3);
     this.tab1.Groups.Add(this.group4);
     this.tab1.Label = "Qlik";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.Items.Add(this.buttonConnectToEngine);
     this.group1.Items.Add(this.editBox1);
     this.group1.Label = "Connection";
     this.group1.Name  = "group1";
     //
     // buttonConnectToEngine
     //
     this.buttonConnectToEngine.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
     this.buttonConnectToEngine.Image       = ((System.Drawing.Image)(resources.GetObject("buttonConnectToEngine.Image")));
     this.buttonConnectToEngine.Label       = "Connect";
     this.buttonConnectToEngine.Name        = "buttonConnectToEngine";
     this.buttonConnectToEngine.ShowImage   = true;
     this.buttonConnectToEngine.Click      += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonConnectToEngine_Click);
     //
     // editBox1
     //
     this.editBox1.Label = "Server";
     this.editBox1.Name  = "editBox1";
     this.editBox1.Text  = null;
     //
     // group2
     //
     this.group2.Items.Add(this.dropDown1);
     this.group2.Label = "Apps";
     this.group2.Name  = "group2";
     //
     // dropDown1
     //
     this.dropDown1.Label             = " ";
     this.dropDown1.Name              = "dropDown1";
     this.dropDown1.ScreenTip         = "List of Apps";
     this.dropDown1.SelectionChanged += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.dropDown1_SelectionChanged);
     //
     // group3
     //
     this.group3.Items.Add(this.dropDown2);
     this.group3.Label = "Sheets";
     this.group3.Name  = "group3";
     //
     // dropDown2
     //
     this.dropDown2.Label             = " ";
     this.dropDown2.Name              = "dropDown2";
     this.dropDown2.ScreenTip         = "List of Sheets";
     this.dropDown2.SelectionChanged += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.dropDown2_SelectionChanged);
     //
     // group4
     //
     ribbonDialogLauncherImpl1.Image    = global::QlikWord.Properties.Resources.qlik_sense_logo;
     ribbonDialogLauncherImpl1.SuperTip = "Show as Single";
     this.group4.DialogLauncher         = ribbonDialogLauncherImpl1;
     this.group4.Items.Add(this.dropDown3);
     this.group4.Label = "Objects";
     this.group4.Name  = "group4";
     this.group4.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group4_DialogLauncherClick);
     //
     // dropDown3
     //
     this.dropDown3.Label     = " ";
     this.dropDown3.Name      = "dropDown3";
     this.dropDown3.ScreenTip = "List of Objects";
     //
     // Ribbon1
     //
     this.Name       = "Ribbon1";
     this.RibbonType = "Microsoft.Word.Document";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon1_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.group2.ResumeLayout(false);
     this.group2.PerformLayout();
     this.group3.ResumeLayout(false);
     this.group3.PerformLayout();
     this.group4.ResumeLayout(false);
     this.group4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
 }
Exemplo n.º 30
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncher1 = new Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SharePointRibbon));
            this.tab1 = new Microsoft.Office.Tools.Ribbon.RibbonTab();
            this.group1 = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.btnConnectionProperties = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnNewConnection = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.btnOptions = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.Manage = new Microsoft.Office.Tools.Ribbon.RibbonGroup();
            this.Uploads = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.Copy = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.Move = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.button1 = new Microsoft.Office.Tools.Ribbon.RibbonButton();
            this.tab1.SuspendLayout();
            this.group1.SuspendLayout();
            this.Manage.SuspendLayout();
            this.SuspendLayout();
            // 
            // tab1
            // 
            this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
            this.tab1.Groups.Add(this.group1);
            this.tab1.Groups.Add(this.Manage);
            this.tab1.Label = "ITOPIA  ";
            this.tab1.Name = "tab1";
            // 
            // group1
            // 
            this.group1.DialogLauncher = ribbonDialogLauncher1;
            this.group1.Items.Add(this.btnConnectionProperties);
            this.group1.Items.Add(this.btnNewConnection);
            this.group1.Items.Add(this.btnOptions);
            this.group1.Label = "ITOPIA SharePoint Configuration";
            this.group1.Name = "group1";
            // 
            // btnConnectionProperties
            // 
            this.btnConnectionProperties.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnConnectionProperties.Description = "Connect To SharePoint";
            this.btnConnectionProperties.Image = global::SharePoint_Link.Properties.Resources.conn_new;
            this.btnConnectionProperties.ImageName = "Connection Properties";
            this.btnConnectionProperties.Label = "Connection Properties";
            this.btnConnectionProperties.Name = "btnConnectionProperties";
            this.btnConnectionProperties.ScreenTip = "Connection Properties";
            this.btnConnectionProperties.ShowImage = true;
            this.btnConnectionProperties.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnConnectionProperties_Click);
            // 
            // btnNewConnection
            // 
            this.btnNewConnection.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnNewConnection.Description = "Connect To SharePoint";
            this.btnNewConnection.Image = global::SharePoint_Link.Properties.Resources.h21;
            this.btnNewConnection.ImageName = "New Connection ";
            this.btnNewConnection.Label = "New Connection";
            this.btnNewConnection.Name = "btnNewConnection";
            this.btnNewConnection.ScreenTip = "New Connection ";
            this.btnNewConnection.ShowImage = true;
            this.btnNewConnection.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnNewConnection_Click);
            // 
            // btnOptions
            // 
            this.btnOptions.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.btnOptions.Description = "Connect To SharePoint";
            this.btnOptions.Image = global::SharePoint_Link.Properties.Resources.option;
            this.btnOptions.ImageName = "Options";
            this.btnOptions.Label = "Options";
            this.btnOptions.Name = "btnOptions";
            this.btnOptions.ScreenTip = "Options";
            this.btnOptions.ShowImage = true;
            this.btnOptions.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.btnOptions_Click);
            // 
            // Manage
            // 
            this.Manage.Items.Add(this.Uploads);
            this.Manage.Items.Add(this.Copy);
            this.Manage.Items.Add(this.Move);
            this.Manage.Label = "ITOPIA SharePoint Utilities";
            this.Manage.Name = "Manage";
            // 
            // Uploads
            // 
            this.Uploads.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.Uploads.Description = "View Uploads";
            this.Uploads.Image = global::SharePoint_Link.Properties.Resources.upload;
            this.Uploads.Label = "Uploads";
            this.Uploads.Name = "Uploads";
            this.Uploads.ShowImage = true;
            this.Uploads.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.Uploads_Click);
            // 
            // Copy
            // 
            this.Copy.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.Copy.Image = global::SharePoint_Link.Properties.Resources.copy;
            this.Copy.Label = "Copy";
            this.Copy.Name = "Copy";
            this.Copy.ShowImage = true;
            this.Copy.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.Copy_Click);
            // 
            // Move
            // 
            this.Move.ControlSize = Microsoft.Office.Core.RibbonControlSize.RibbonControlSizeLarge;
            this.Move.Image = global::SharePoint_Link.Properties.Resources.move;
            this.Move.Label = "Move";
            this.Move.Name = "Move";
            this.Move.ShowImage = true;
            this.Move.Click += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonControlEventArgs>(this.Move_Click);
            // 
            // button1
            // 
            this.button1.Label = "SSP 2010";
            this.button1.Name = "button1";
            this.button1.ShowImage = true;
            // 
            // SharePointRibbon
            // 
            this.Name = "SharePointRibbon";
            // 
            // SharePointRibbon.OfficeMenu
            // 
            this.OfficeMenu.Items.Add(this.button1);
            this.RibbonType = resources.GetString("$this.RibbonType");
            this.Tabs.Add(this.tab1);
            this.Load += new System.EventHandler<Microsoft.Office.Tools.Ribbon.RibbonUIEventArgs>(this.SharePointRibbon_Load);
            this.tab1.ResumeLayout(false);
            this.tab1.PerformLayout();
            this.group1.ResumeLayout(false);
            this.group1.PerformLayout();
            this.Manage.ResumeLayout(false);
            this.Manage.PerformLayout();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.Appointment               = this.Factory.CreateRibbonTab();
     this.groupJitsiMeet            = this.Factory.CreateRibbonGroup();
     this.box1                      = this.Factory.CreateRibbonBox();
     this.fieldRoomID               = this.Factory.CreateRibbonEditBox();
     this.box2                      = this.Factory.CreateRibbonBox();
     this.buttonRandomRoomID        = this.Factory.CreateRibbonButton();
     this.buttonStartWithAudioMuted = this.Factory.CreateRibbonToggleButton();
     this.box3                      = this.Factory.CreateRibbonBox();
     this.buttonRequireDisplayName  = this.Factory.CreateRibbonToggleButton();
     this.buttonStartWithVideoMuted = this.Factory.CreateRibbonToggleButton();
     this.Appointment.SuspendLayout();
     this.groupJitsiMeet.SuspendLayout();
     this.box1.SuspendLayout();
     this.box2.SuspendLayout();
     this.box3.SuspendLayout();
     this.SuspendLayout();
     //
     // Appointment
     //
     this.Appointment.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.Appointment.ControlId.OfficeId      = "TabAppointment";
     this.Appointment.Groups.Add(this.groupJitsiMeet);
     this.Appointment.Label = "TabAppointment";
     this.Appointment.Name  = "Appointment";
     //
     // groupJitsiMeet
     //
     ribbonDialogLauncherImpl1.SuperTip = "Preferences";
     this.groupJitsiMeet.DialogLauncher = ribbonDialogLauncherImpl1;
     this.groupJitsiMeet.Items.Add(this.box1);
     this.groupJitsiMeet.Items.Add(this.box2);
     this.groupJitsiMeet.Items.Add(this.box3);
     this.groupJitsiMeet.Label                = "Leaf";
     this.groupJitsiMeet.Name                 = "groupLeaf";
     this.groupJitsiMeet.Position             = this.Factory.RibbonPosition.BeforeOfficeId("GroupAttendees");
     this.groupJitsiMeet.Visible              = Properties.Settings.Default.showRibbonOnEveryAppointment;
     this.groupJitsiMeet.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonDialogLauncher_Click);
     //
     // box1
     //
     this.box1.Items.Add(this.fieldRoomID);
     this.box1.Name = "box1";
     //
     // fieldRoomID
     //
     this.fieldRoomID.Label         = "ID:";
     this.fieldRoomID.Name          = "fieldRoomID";
     this.fieldRoomID.OfficeImageId = "StylesPaneNewStyle";
     this.fieldRoomID.ShowImage     = true;
     this.fieldRoomID.SizeString    = "wwwwwwwwwwwwwwwwwwwwww";
     this.fieldRoomID.SuperTip      = "Longer names are more secure.";
     this.fieldRoomID.Text          = null;
     this.fieldRoomID.TextChanged  += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.RoomID_TextChanged);
     //
     // box2
     //
     this.box2.Items.Add(this.buttonRandomRoomID);
     this.box2.Items.Add(this.buttonStartWithAudioMuted);
     this.box2.Name = "box2";
     //
     // buttonRandomRoomID
     //
     this.buttonRandomRoomID.Label         = "Random ID";
     this.buttonRandomRoomID.Name          = "buttonRandomRoomID";
     this.buttonRandomRoomID.OfficeImageId = "AccessRefreshAllLists";
     this.buttonRandomRoomID.ShowImage     = true;
     this.buttonRandomRoomID.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonCustomiseJitsiMeeting_Click);
     //
     // buttonStartWithAudioMuted
     //
     this.buttonStartWithAudioMuted.Label         = "Mute on Start";
     this.buttonStartWithAudioMuted.Name          = "buttonStartWithAudioMuted";
     this.buttonStartWithAudioMuted.OfficeImageId = "SpeechMicrophone";
     this.buttonStartWithAudioMuted.ShowImage     = true;
     this.buttonStartWithAudioMuted.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonStartWithAudioMuted_Click);
     //
     // box3
     //
     this.box3.Items.Add(this.buttonRequireDisplayName);
     this.box3.Items.Add(this.buttonStartWithVideoMuted);
     this.box3.Name = "box3";
     //
     // buttonRequireDisplayName
     //
     this.buttonRequireDisplayName.Label         = "Require Name";
     this.buttonRequireDisplayName.Name          = "buttonRequireDisplayName";
     this.buttonRequireDisplayName.OfficeImageId = "FormControlEditBox";
     this.buttonRequireDisplayName.ShowImage     = true;
     this.buttonRequireDisplayName.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonRequireDisplayName_Click);
     //
     // buttonStartWithVideoMuted
     //
     this.buttonStartWithVideoMuted.Label         = "No Video on Start";
     this.buttonStartWithVideoMuted.Name          = "buttonStartWithVideoMuted";
     this.buttonStartWithVideoMuted.OfficeImageId = "Camera";
     this.buttonStartWithVideoMuted.ShowImage     = true;
     this.buttonStartWithVideoMuted.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.buttonStartWithVideoMuted_Click);
     //
     // AppointmentRibbonGroup
     //
     this.Name       = "AppointmentRibbonGroup";
     this.RibbonType = "Microsoft.Outlook.Appointment";
     this.Tabs.Add(this.Appointment);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.AppointmentRibbonGroup_Load);
     this.Appointment.ResumeLayout(false);
     this.Appointment.PerformLayout();
     this.groupJitsiMeet.ResumeLayout(false);
     this.groupJitsiMeet.PerformLayout();
     this.box1.ResumeLayout(false);
     this.box1.PerformLayout();
     this.box2.ResumeLayout(false);
     this.box2.PerformLayout();
     this.box3.ResumeLayout(false);
     this.box3.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 32
0
 /// <summary>
 /// デザイナーのサポートに必要なメソッドです。
 /// このメソッドの内容をコード エディターで変更しないでください。
 /// </summary>
 private void InitializeComponent()
 {
     Microsoft.Office.Tools.Ribbon.RibbonDialogLauncher ribbonDialogLauncherImpl1 = this.Factory.CreateRibbonDialogLauncher();
     this.tab1     = this.Factory.CreateRibbonTab();
     this.group1   = this.Factory.CreateRibbonGroup();
     this.skeleton = this.Factory.CreateRibbonButton();
     this.booking  = this.Factory.CreateRibbonButton();
     this.button3  = this.Factory.CreateRibbonButton();
     this.tab1.SuspendLayout();
     this.group1.SuspendLayout();
     this.SuspendLayout();
     //
     // tab1
     //
     this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office;
     this.tab1.ControlId.OfficeId      = "TabData";
     this.tab1.Groups.Add(this.group1);
     this.tab1.Label = "TabData";
     this.tab1.Name  = "tab1";
     //
     // group1
     //
     this.group1.DialogLauncher = ribbonDialogLauncherImpl1;
     this.group1.Items.Add(this.skeleton);
     this.group1.Items.Add(this.booking);
     this.group1.Items.Add(this.button3);
     this.group1.Label = "HT取込ツール";
     this.group1.Name  = "group1";
     this.group1.DialogLauncherClick += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.group1_DialogLauncherClick);
     //
     // skeleton
     //
     this.skeleton.Label         = "スケルトン";
     this.skeleton.Name          = "skeleton";
     this.skeleton.OfficeImageId = "PlusSign";
     this.skeleton.ShowImage     = true;
     this.skeleton.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.skeleton_Click);
     //
     // booking
     //
     this.booking.Label         = "当日予約";
     this.booking.Name          = "booking";
     this.booking.OfficeImageId = "Schedule";
     this.booking.ShowImage     = true;
     this.booking.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.booking_Click);
     //
     // button3
     //
     this.button3.Label         = "即時実行";
     this.button3.Name          = "button3";
     this.button3.OfficeImageId = "QueryRunQuery";
     this.button3.ShowImage     = true;
     this.button3.Click        += new Microsoft.Office.Tools.Ribbon.RibbonControlEventHandler(this.button3_Click);
     //
     // Ribbon
     //
     this.Name       = "Ribbon";
     this.RibbonType = "Microsoft.Excel.Workbook";
     this.Tabs.Add(this.tab1);
     this.Load += new Microsoft.Office.Tools.Ribbon.RibbonUIEventHandler(this.Ribbon_Load);
     this.tab1.ResumeLayout(false);
     this.tab1.PerformLayout();
     this.group1.ResumeLayout(false);
     this.group1.PerformLayout();
     this.ResumeLayout(false);
 }