namespace AppliStation { partial class PackageListViewForm { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PackageListViewForm)); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.toolStripContainer = new System.Windows.Forms.ToolStripPanel(); this.packageListFilterToolStrip = new System.Windows.Forms.ToolStrip(); this.packageFilterToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton(); this.allPackageFilterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.notInstalledPackageFilterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.installedASPackageFilterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.installedSysPackageFilterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchTextBox = new System.Windows.Forms.ToolStripTextBox(); this.packageCommandsToolStrip = new System.Windows.Forms.ToolStrip(); this.updateToolStripButton = new System.Windows.Forms.ToolStripSplitButton(); this.localUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.upgradeToolStripButton = new System.Windows.Forms.ToolStripButton(); this.installToolStripButton = new System.Windows.Forms.ToolStripButton(); this.uninstallToolStripButton = new System.Windows.Forms.ToolStripButton(); this.splitContainer = new System.Windows.Forms.SplitContainer(); this.packageListView = new System.Windows.Forms.ListView(); this.nameHeader = new System.Windows.Forms.ColumnHeader(); this.versionHeader = new System.Windows.Forms.ColumnHeader(); this.summaryHeader = new System.Windows.Forms.ColumnHeader(); this.packageListContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); this.installToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.uninstallToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.webResourcesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.webOfficialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.webGoogleSearchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openInstalledDirectoryStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.detailBox = new System.Windows.Forms.RichTextBox(); this.tableLayoutPanel1.SuspendLayout(); this.toolStripContainer.SuspendLayout(); this.packageListFilterToolStrip.SuspendLayout(); this.packageCommandsToolStrip.SuspendLayout(); this.splitContainer.Panel1.SuspendLayout(); this.splitContainer.Panel2.SuspendLayout(); this.splitContainer.SuspendLayout(); this.packageListContextMenuStrip.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(222, 6); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.toolStripContainer, 0, 0); this.tableLayoutPanel1.Controls.Add(this.splitContainer, 0, 1); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 2; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(492, 366); this.tableLayoutPanel1.TabIndex = 0; // // toolStripContainer // this.toolStripContainer.Controls.Add(this.packageListFilterToolStrip); this.toolStripContainer.Controls.Add(this.packageCommandsToolStrip); this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Top; this.toolStripContainer.Location = new System.Drawing.Point(0, 0); this.toolStripContainer.Name = "toolStripContainer"; this.toolStripContainer.Orientation = System.Windows.Forms.Orientation.Horizontal; this.toolStripContainer.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); this.toolStripContainer.Size = new System.Drawing.Size(492, 50); // // packageListFilterToolStrip // this.packageListFilterToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.packageListFilterToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.packageFilterToolStripDropDownButton, this.searchTextBox}); this.packageListFilterToolStrip.Location = new System.Drawing.Point(3, 0); this.packageListFilterToolStrip.Name = "packageListFilterToolStrip"; this.packageListFilterToolStrip.Size = new System.Drawing.Size(206, 25); this.packageListFilterToolStrip.TabIndex = 1; // // packageFilterToolStripDropDownButton // this.packageFilterToolStripDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.allPackageFilterToolStripMenuItem, this.notInstalledPackageFilterToolStripMenuItem, this.installedASPackageFilterToolStripMenuItem, this.installedSysPackageFilterToolStripMenuItem}); this.packageFilterToolStripDropDownButton.Name = "packageFilterToolStripDropDownButton"; this.packageFilterToolStripDropDownButton.Size = new System.Drawing.Size(13, 22); // // allPackageFilterToolStripMenuItem // this.allPackageFilterToolStripMenuItem.Name = "allPackageFilterToolStripMenuItem"; this.allPackageFilterToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.allPackageFilterToolStripMenuItem.Text = "全て"; this.allPackageFilterToolStripMenuItem.ToolTipText = "全てのソフトを表示"; this.allPackageFilterToolStripMenuItem.Click += new System.EventHandler(this.AnyPackageFilterToolStripMenuItemClicked); // // notInstalledPackageFilterToolStripMenuItem // this.notInstalledPackageFilterToolStripMenuItem.Name = "notInstalledPackageFilterToolStripMenuItem"; this.notInstalledPackageFilterToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.notInstalledPackageFilterToolStripMenuItem.Text = "未インストール"; this.notInstalledPackageFilterToolStripMenuItem.ToolTipText = "インストールされていないソフトを表示"; this.notInstalledPackageFilterToolStripMenuItem.Click += new System.EventHandler(this.AnyPackageFilterToolStripMenuItemClicked); // // installedASPackageFilterToolStripMenuItem // this.installedASPackageFilterToolStripMenuItem.Name = "installedASPackageFilterToolStripMenuItem"; this.installedASPackageFilterToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.installedASPackageFilterToolStripMenuItem.Text = "AppliStation内"; this.installedASPackageFilterToolStripMenuItem.ToolTipText = "AppliStationにインストールされているソフトを表示"; this.installedASPackageFilterToolStripMenuItem.Click += new System.EventHandler(this.AnyPackageFilterToolStripMenuItemClicked); // // installedSysPackageFilterToolStripMenuItem // this.installedSysPackageFilterToolStripMenuItem.Name = "installedSysPackageFilterToolStripMenuItem"; this.installedSysPackageFilterToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.installedSysPackageFilterToolStripMenuItem.Text = "コンピュータ内"; this.installedSysPackageFilterToolStripMenuItem.ToolTipText = "コンピュータにインストールされているソフトを表示"; this.installedSysPackageFilterToolStripMenuItem.Click += new System.EventHandler(this.AnyPackageFilterToolStripMenuItemClicked); // // searchTextBox // this.searchTextBox.ForeColor = System.Drawing.SystemColors.GrayText; this.searchTextBox.Name = "searchTextBox"; this.searchTextBox.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never; this.searchTextBox.Size = new System.Drawing.Size(150, 25); this.searchTextBox.Text = "検索"; this.searchTextBox.ToolTipText = "検索する語を入力"; this.searchTextBox.Enter += new System.EventHandler(this.SearchTextBoxEnter); this.searchTextBox.Leave += new System.EventHandler(this.SearchTextBoxLeave); this.searchTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.SearchTextBoxKeyPress); this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBoxTextChanged); // // packageCommandsToolStrip // this.packageCommandsToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.packageCommandsToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.updateToolStripButton, this.upgradeToolStripButton, this.installToolStripButton, this.uninstallToolStripButton}); this.packageCommandsToolStrip.Location = new System.Drawing.Point(3, 25); this.packageCommandsToolStrip.Name = "packageCommandsToolStrip"; this.packageCommandsToolStrip.Size = new System.Drawing.Size(221, 25); this.packageCommandsToolStrip.TabIndex = 2; // // updateToolStripButton // this.updateToolStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.localUpdateToolStripMenuItem}); this.updateToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("updateToolStripButton.Image"))); this.updateToolStripButton.Name = "updateToolStripButton"; this.updateToolStripButton.Size = new System.Drawing.Size(111, 22); this.updateToolStripButton.Text = "リストの更新(&U)"; this.updateToolStripButton.ToolTipText = "ソフトリスト更新(U)"; this.updateToolStripButton.ButtonClick += new System.EventHandler(this.UpdateToolStripButtonClick); // // localUpdateToolStripMenuItem // this.localUpdateToolStripMenuItem.Name = "localUpdateToolStripMenuItem"; this.localUpdateToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5; this.localUpdateToolStripMenuItem.Size = new System.Drawing.Size(250, 22); this.localUpdateToolStripMenuItem.Text = "インストール済ソフトの読み直し(&R)"; this.localUpdateToolStripMenuItem.Click += new System.EventHandler(this.LocalupdateToolStripMenuItemClick); // // upgradeToolStripButton // this.upgradeToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("upgradeToolStripButton.Image"))); this.upgradeToolStripButton.Name = "upgradeToolStripButton"; this.upgradeToolStripButton.Size = new System.Drawing.Size(100, 22); this.upgradeToolStripButton.Text = "ソフトの更新(&G)"; this.upgradeToolStripButton.Click += new System.EventHandler(this.UpgradeToolStripButtonClick); // // installToolStripButton // this.installToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("installToolStripButton.Image"))); this.installToolStripButton.Name = "installToolStripButton"; this.installToolStripButton.Size = new System.Drawing.Size(80, 22); this.installToolStripButton.Text = "インストール"; this.installToolStripButton.ToolTipText = "選択されているアプリケーションをインストール"; this.installToolStripButton.Visible = false; this.installToolStripButton.Click += new System.EventHandler(this.InstallToolStripButtonClick); // // uninstallToolStripButton // this.uninstallToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("uninstallToolStripButton.Image"))); this.uninstallToolStripButton.Name = "uninstallToolStripButton"; this.uninstallToolStripButton.Size = new System.Drawing.Size(98, 22); this.uninstallToolStripButton.Text = "アンインストール"; this.uninstallToolStripButton.ToolTipText = "選択されているアプリケーションをアンインストール"; this.uninstallToolStripButton.Visible = false; this.uninstallToolStripButton.Click += new System.EventHandler(this.UninstallToolStripButtonClick); // // splitContainer // this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2; this.splitContainer.Location = new System.Drawing.Point(3, 53); this.splitContainer.Name = "splitContainer"; this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer.Panel1 // this.splitContainer.Panel1.Controls.Add(this.packageListView); // // splitContainer.Panel2 // this.splitContainer.Panel2.Controls.Add(this.detailBox); this.splitContainer.Size = new System.Drawing.Size(486, 310); this.splitContainer.SplitterDistance = 225; this.splitContainer.TabIndex = 1; // // packageListView // this.packageListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.nameHeader, this.versionHeader, this.summaryHeader}); this.packageListView.ContextMenuStrip = this.packageListContextMenuStrip; this.packageListView.Dock = System.Windows.Forms.DockStyle.Fill; this.packageListView.FullRowSelect = true; this.packageListView.GridLines = true; this.packageListView.Location = new System.Drawing.Point(0, 0); this.packageListView.MultiSelect = false; this.packageListView.Name = "packageListView"; this.packageListView.Size = new System.Drawing.Size(486, 225); this.packageListView.TabIndex = 0; this.packageListView.UseCompatibleStateImageBehavior = false; this.packageListView.View = System.Windows.Forms.View.Details; this.packageListView.ItemActivate += new System.EventHandler(this.PackageListViewItemActivate); this.packageListView.SelectedIndexChanged += new System.EventHandler(this.PackageListViewSelectedIndexChanged); this.packageListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.PackageListViewColumnClick); // // nameHeader // this.nameHeader.Text = "名前"; this.nameHeader.Width = 100; // // versionHeader // this.versionHeader.Text = "バージョン"; // // summaryHeader // this.summaryHeader.Text = "概要"; this.summaryHeader.Width = 300; // // packageListContextMenuStrip // this.packageListContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.installToolStripMenuItem, this.uninstallToolStripMenuItem, this.toolStripSeparator1, this.webResourcesToolStripMenuItem, this.openInstalledDirectoryStripMenuItem}); this.packageListContextMenuStrip.Name = "packageListContextMenuStrip"; this.packageListContextMenuStrip.Size = new System.Drawing.Size(226, 98); this.packageListContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.PackageListContextMenuStripOpening); // // installToolStripMenuItem // this.installToolStripMenuItem.Name = "installToolStripMenuItem"; this.installToolStripMenuItem.Size = new System.Drawing.Size(225, 22); this.installToolStripMenuItem.Text = "インストール(&I)..."; this.installToolStripMenuItem.Click += new System.EventHandler(this.InstallToolStripButtonClick); // // uninstallToolStripMenuItem // this.uninstallToolStripMenuItem.Name = "uninstallToolStripMenuItem"; this.uninstallToolStripMenuItem.Size = new System.Drawing.Size(225, 22); this.uninstallToolStripMenuItem.Text = "アンインストール(&U)..."; this.uninstallToolStripMenuItem.Click += new System.EventHandler(this.UninstallToolStripButtonClick); // // webResourcesToolStripMenuItem // this.webResourcesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.webOfficialToolStripMenuItem, this.webGoogleSearchToolStripMenuItem}); this.webResourcesToolStripMenuItem.Name = "webResourcesToolStripMenuItem"; this.webResourcesToolStripMenuItem.Size = new System.Drawing.Size(225, 22); this.webResourcesToolStripMenuItem.Tag = "\"{0}\"に関するWebページ(&W)"; // // webOfficialToolStripMenuItem // this.webOfficialToolStripMenuItem.Name = "webOfficialToolStripMenuItem"; this.webOfficialToolStripMenuItem.Size = new System.Drawing.Size(145, 22); this.webOfficialToolStripMenuItem.Text = "公式サイト(&O)"; this.webOfficialToolStripMenuItem.Click += new System.EventHandler(this.WebOfficialToolStripMenuItemClick); // // webGoogleSearchToolStripMenuItem // this.webGoogleSearchToolStripMenuItem.Name = "webGoogleSearchToolStripMenuItem"; this.webGoogleSearchToolStripMenuItem.Size = new System.Drawing.Size(145, 22); this.webGoogleSearchToolStripMenuItem.Text = "Google検索(&G)"; this.webGoogleSearchToolStripMenuItem.Click += new System.EventHandler(this.WebGoogleSearchToolStripMenuItemClick); // // openInstalledDirectoryStripMenuItem // this.openInstalledDirectoryStripMenuItem.Name = "openInstalledDirectoryStripMenuItem"; this.openInstalledDirectoryStripMenuItem.Size = new System.Drawing.Size(225, 22); this.openInstalledDirectoryStripMenuItem.Text = "インストール先のフォルダを開く(&O)"; this.openInstalledDirectoryStripMenuItem.Click += new System.EventHandler(this.OpenInstalledDirectoryStripMenuItemClick); // // detailBox // this.detailBox.BackColor = System.Drawing.SystemColors.Control; this.detailBox.BorderStyle = System.Windows.Forms.BorderStyle.None; this.detailBox.Dock = System.Windows.Forms.DockStyle.Fill; this.detailBox.ForeColor = System.Drawing.SystemColors.ControlText; this.detailBox.Location = new System.Drawing.Point(0, 0); this.detailBox.Name = "detailBox"; this.detailBox.ReadOnly = true; this.detailBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical; this.detailBox.Size = new System.Drawing.Size(486, 81); this.detailBox.TabIndex = 0; this.detailBox.Text = ""; this.detailBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.PackageDetailBoxLinkClicked); // // PackageListViewForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(492, 366); this.Controls.Add(this.tableLayoutPanel1); this.Name = "PackageListViewForm"; this.Text = "AppliStation"; this.Load += new System.EventHandler(this.Form_OnLoad); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.toolStripContainer.ResumeLayout(false); this.toolStripContainer.PerformLayout(); this.packageListFilterToolStrip.ResumeLayout(false); this.packageListFilterToolStrip.PerformLayout(); this.packageCommandsToolStrip.ResumeLayout(false); this.packageCommandsToolStrip.PerformLayout(); this.splitContainer.Panel1.ResumeLayout(false); this.splitContainer.Panel2.ResumeLayout(false); this.splitContainer.ResumeLayout(false); this.packageListContextMenuStrip.ResumeLayout(false); this.ResumeLayout(false); } private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripMenuItem openInstalledDirectoryStripMenuItem; private System.Windows.Forms.ToolStripMenuItem webGoogleSearchToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem webOfficialToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem webResourcesToolStripMenuItem; private System.Windows.Forms.RichTextBox detailBox; private System.Windows.Forms.SplitContainer splitContainer; private System.Windows.Forms.ToolStripPanel toolStripContainer; private System.Windows.Forms.ToolStripMenuItem installedSysPackageFilterToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem installedASPackageFilterToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem notInstalledPackageFilterToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem allPackageFilterToolStripMenuItem; private System.Windows.Forms.ToolStripDropDownButton packageFilterToolStripDropDownButton; private System.Windows.Forms.ToolStripButton upgradeToolStripButton; private System.Windows.Forms.ToolStripMenuItem localUpdateToolStripMenuItem; private System.Windows.Forms.ToolStripSplitButton updateToolStripButton; private System.Windows.Forms.ToolStripMenuItem uninstallToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem installToolStripMenuItem; private System.Windows.Forms.ContextMenuStrip packageListContextMenuStrip; private System.Windows.Forms.ToolStripButton uninstallToolStripButton; private System.Windows.Forms.ToolStripButton installToolStripButton; private System.Windows.Forms.ToolStrip packageCommandsToolStrip; private System.Windows.Forms.ToolStrip packageListFilterToolStrip; private System.Windows.Forms.ToolStripTextBox searchTextBox; private System.Windows.Forms.ColumnHeader versionHeader; private System.Windows.Forms.ListView packageListView; private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private System.Windows.Forms.ColumnHeader summaryHeader; private System.Windows.Forms.ColumnHeader nameHeader; } }