/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.historySplitter = new System.Windows.Forms.SplitContainer(); this.historyListBox = new Lyra2.LyraShell.SongListBox(); this.historySongPreview = new Lyra2.LyraShell.SongPreview(); this.bottomPanel = new Infragistics.Win.Misc.UltraPanel(); this.line = new Infragistics.Win.Misc.UltraPanel(); this.ultraButton1 = new Lyra2.LyraShell.LyraButtonControl(); this.historyAsListBtn = new Lyra2.LyraShell.LyraButtonControl(); this.historySplitter.Panel1.SuspendLayout(); this.historySplitter.Panel2.SuspendLayout(); this.historySplitter.SuspendLayout(); this.bottomPanel.ClientArea.SuspendLayout(); this.bottomPanel.SuspendLayout(); this.line.SuspendLayout(); this.SuspendLayout(); // // historySplitter // this.historySplitter.Dock = System.Windows.Forms.DockStyle.Fill; this.historySplitter.Location = new System.Drawing.Point(0, 0); this.historySplitter.Name = "historySplitter"; this.historySplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // historySplitter.Panel1 // this.historySplitter.Panel1.Controls.Add(this.historyListBox); // // historySplitter.Panel2 // this.historySplitter.Panel2.Controls.Add(this.historySongPreview); this.historySplitter.Size = new System.Drawing.Size(593, 644); this.historySplitter.SplitterDistance = 405; this.historySplitter.TabIndex = 7; // // historyListBox // this.historyListBox.Dock = System.Windows.Forms.DockStyle.Fill; this.historyListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.historyListBox.ItemHeight = 15; this.historyListBox.Location = new System.Drawing.Point(0, 0); this.historyListBox.Name = "historyListBox"; this.historyListBox.NrOfNumberMatches = 0; this.historyListBox.Size = new System.Drawing.Size(593, 394); this.historyListBox.TabIndex = 6; this.historyListBox.SelectedIndexChanged += new System.EventHandler(this.historyListBox_SelectedIndexChanged); this.historyListBox.DoubleClick += new System.EventHandler(this.listBox3_DoubleClick); this.historyListBox.SelectedValueChanged += new System.EventHandler(this.listBox3_SelectedValueChanged); // // historySongPreview // this.historySongPreview.AutoScroll = true; this.historySongPreview.Dock = System.Windows.Forms.DockStyle.Fill; this.historySongPreview.Location = new System.Drawing.Point(0, 0); this.historySongPreview.Name = "historySongPreview"; this.historySongPreview.Size = new System.Drawing.Size(593, 235); this.historySongPreview.TabIndex = 1; // // bottomPanel // Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance(); appearance1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); appearance1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(241)))), ((int)(((byte)(241)))), ((int)(((byte)(241))))); appearance1.BackGradientStyle = Infragistics.Win.GradientStyle.GlassTop50; this.bottomPanel.Appearance = appearance1; // // bottomPanel.ClientArea // this.bottomPanel.ClientArea.Controls.Add(this.line); this.bottomPanel.ClientArea.Controls.Add(this.ultraButton1); this.bottomPanel.ClientArea.Controls.Add(this.historyAsListBtn); this.bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom; this.bottomPanel.Location = new System.Drawing.Point(0, 644); this.bottomPanel.Name = "bottomPanel"; this.bottomPanel.Size = new System.Drawing.Size(593, 29); this.bottomPanel.TabIndex = 8; // // line // Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance(); appearance2.BackColor = System.Drawing.Color.DimGray; this.line.Appearance = appearance2; this.line.Dock = System.Windows.Forms.DockStyle.Top; this.line.Location = new System.Drawing.Point(0, 0); this.line.Name = "line"; this.line.Size = new System.Drawing.Size(593, 1); this.line.TabIndex = 1; // // ultraButton1 // this.ultraButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.ultraButton1.Location = new System.Drawing.Point(217, 3); this.ultraButton1.Name = "ultraButton1"; this.ultraButton1.Size = new System.Drawing.Size(179, 23); this.ultraButton1.TabIndex = 0; this.ultraButton1.Text = "History in Text Datei speichern..."; this.ultraButton1.Click += new System.EventHandler(this.SaveHistoryAsTextFile); // // historyAsListBtn // this.historyAsListBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.historyAsListBtn.Location = new System.Drawing.Point(404, 3); this.historyAsListBtn.Name = "historyAsListBtn"; this.historyAsListBtn.Size = new System.Drawing.Size(179, 23); this.historyAsListBtn.TabIndex = 0; this.historyAsListBtn.Text = "History als Liste speichern..."; this.historyAsListBtn.Click += new System.EventHandler(this.SaveAsListButtonClickHandler); // // History // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(593, 673); this.Controls.Add(this.historySplitter); this.Controls.Add(this.bottomPanel); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "History"; this.ShowInTaskbar = false; this.Text = "History"; this.historySplitter.Panel1.ResumeLayout(false); this.historySplitter.Panel2.ResumeLayout(false); this.historySplitter.ResumeLayout(false); this.bottomPanel.ClientArea.ResumeLayout(false); this.bottomPanel.ResumeLayout(false); this.line.ResumeLayout(false); this.ResumeLayout(false); }
public bool SearchCollection(string query, SortedList list, SongListBox resultBox, bool text, bool matchCase, bool whole, bool trans, SortMethod sortMethod) { DirectoryInfo indexDir = new DirectoryInfo(this.indexDir); IndexSearcher searcher = new IndexSearcher(indexDir.FullName); QueryParser parser = new QueryParser(text ? "text" : "title", this.indexAnalyzer); LyraQuery lQuery = SearchUtil.CreateLyraQuery(query, whole); List<ISong> numberSongs = new List<ISong>(); // search for nr if (lQuery.Numbers != null) { foreach (int nr in lQuery.Numbers) { Song song = this.nrIndex[nr] as Song; if (song != null) { numberSongs.Add(song); } } } List<ISong> songs = new List<ISong>(); if (!string.IsNullOrEmpty(lQuery.LuceneQuery)) { Query luceneQuery = parser.Parse(lQuery.LuceneQuery); Hits hits = searcher.Search(luceneQuery); resultBox.Ratings.Clear(); for (int i = 0; i < hits.Length(); i++) { Document doc = hits.Doc(i); int nr = Int32.Parse(doc.GetField("nr").StringValue()); Song song = (Song)this.nrIndex[nr]; if (song != null) { songs.Add(song); resultBox.Ratings.Add(song, hits.Score(i)); } } } searcher.Close(); lock (resultBox) { resultBox.BeginUpdate(); resultBox.Items.Clear(); resultBox.SetSearchTags(GetTags(query)); resultBox.ShowSongs(numberSongs, songs, sortMethod); resultBox.EndUpdate(); } return true; }
public bool SearchCollection(string query, SortedList list, SongListBox resultBox, bool text, bool matchCase, bool whole, bool trans, SortMethod sortMethod) { LyraQuery lQuery = SearchUtil.CreateLyraQuery(query, whole, !text); List<ISong> numberSongs = new List<ISong>(); // search for nr if (lQuery.Numbers != null) { foreach (int nr in lQuery.Numbers) { IList<Song> nrMatches = this.nrIndex.ContainsKey(nr) ? this.nrIndex[nr] : null; if (nrMatches != null) { numberSongs.AddRange(nrMatches); } } } List<ISong> songs = new List<ISong>(); resultBox.Ratings.Clear(); if (!string.IsNullOrEmpty(lQuery.Query)) { foreach (RatedResult<Song> songResult in this.indexer.SearchObjects(query, !text)) { if (numberSongs.Contains(songResult.Result)) continue; resultBox.Ratings.Add(songResult.Result, (float)songResult.Rating); songs.Add(songResult.Result); } } lock (resultBox) { resultBox.BeginUpdate(); resultBox.Items.Clear(); resultBox.SetSearchTags(GetTags(query)); resultBox.ShowSongs(numberSongs, songs, sortMethod); resultBox.EndUpdate(); } return true; }
public bool SearchCollection(string query, SortedList list, SongListBox resultBox, bool text, bool matchCase, bool whole, bool trans, SortMethod sortMethod) { long start = Util.getCurrentTicks(); IDictionaryEnumerator en = list.GetEnumerator(); en.Reset(); string target; Song song; bool found = false; while (en.MoveNext()) { song = (Song) en.Value; // only title? target = text ? (song.Title + " " + song.Text) : song.Title; // with translations? if (trans) { target += (" " + this.queryTrans(song.Translations, text)); } // if case doesn't need to be matched, make all letters small ones... if (!matchCase) { target = target.ToLower(); query = query.ToLower(); } if (this.Or(query, this.cleanTarget(target), whole)) { resultBox.Items.Add(song); found = true; } } Util.addSearchTime(Util.getCurrentTicks() - start); return found; }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance(); Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton(); Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance(); this.favoritesListBox = new Lyra2.LyraShell.SongListBox(); this.favoritesSplitter = new System.Windows.Forms.SplitContainer(); this.favoritesSongPreview = new Lyra2.LyraShell.SongPreview(); this.favoritesFilterTB = new Infragistics.Win.UltraWinEditors.UltraTextEditor(); this.label1 = new System.Windows.Forms.Label(); this.favoritesSplitter.Panel1.SuspendLayout(); this.favoritesSplitter.Panel2.SuspendLayout(); this.favoritesSplitter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.favoritesFilterTB)).BeginInit(); this.SuspendLayout(); // // favoritesListBox // this.favoritesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.favoritesListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.favoritesListBox.ItemHeight = 15; this.favoritesListBox.Location = new System.Drawing.Point(0, 26); this.favoritesListBox.Name = "favoritesListBox"; this.favoritesListBox.Size = new System.Drawing.Size(593, 394); this.favoritesListBox.TabIndex = 6; this.favoritesListBox.SelectedIndexChanged += new System.EventHandler(this.favoritesListBox_SelectedIndexChanged); this.favoritesListBox.DoubleClick += new System.EventHandler(this.listBox3_DoubleClick); this.favoritesListBox.SelectedValueChanged += new System.EventHandler(this.listBox3_SelectedValueChanged); // // favoritesSplitter // this.favoritesSplitter.Dock = System.Windows.Forms.DockStyle.Fill; this.favoritesSplitter.Location = new System.Drawing.Point(0, 0); this.favoritesSplitter.Name = "favoritesSplitter"; this.favoritesSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // favoritesSplitter.Panel1 // this.favoritesSplitter.Panel1.Controls.Add(this.label1); this.favoritesSplitter.Panel1.Controls.Add(this.favoritesFilterTB); this.favoritesSplitter.Panel1.Controls.Add(this.favoritesListBox); // // favoritesSplitter.Panel2 // this.favoritesSplitter.Panel2.Controls.Add(this.favoritesSongPreview); this.favoritesSplitter.Size = new System.Drawing.Size(593, 673); this.favoritesSplitter.SplitterDistance = 424; this.favoritesSplitter.TabIndex = 7; // // favoritesSongPreview // this.favoritesSongPreview.AutoScroll = true; this.favoritesSongPreview.Dock = System.Windows.Forms.DockStyle.Fill; this.favoritesSongPreview.Location = new System.Drawing.Point(0, 0); this.favoritesSongPreview.Name = "favoritesSongPreview"; this.favoritesSongPreview.Size = new System.Drawing.Size(593, 245); this.favoritesSongPreview.TabIndex = 1; // // favoritesFilterTB // this.favoritesFilterTB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); appearance4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(250)))), ((int)(((byte)(215))))); this.favoritesFilterTB.Appearance = appearance4; this.favoritesFilterTB.AutoSize = false; this.favoritesFilterTB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(250)))), ((int)(((byte)(215))))); this.favoritesFilterTB.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid; appearance2.BackColorAlpha = Infragistics.Win.Alpha.Transparent; appearance2.BorderAlpha = Infragistics.Win.Alpha.Transparent; appearance2.ForegroundAlpha = Infragistics.Win.Alpha.Transparent; appearance2.ImageAlpha = Infragistics.Win.Alpha.Transparent; appearance2.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.clear_normal_16; appearance2.ImageBackgroundAlpha = Infragistics.Win.Alpha.Opaque; editorButton1.Appearance = appearance2; editorButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless; appearance3.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.clear_pressed_16; editorButton1.PressedAppearance = appearance3; editorButton1.Text = ""; editorButton1.Width = 16; this.favoritesFilterTB.ButtonsRight.Add(editorButton1); this.favoritesFilterTB.Location = new System.Drawing.Point(380, 4); this.favoritesFilterTB.Name = "favoritesFilterTB"; this.favoritesFilterTB.NullText = "Favoriten Filter"; appearance1.FontData.ItalicAsString = "True"; appearance1.ForeColor = System.Drawing.Color.Gray; this.favoritesFilterTB.NullTextAppearance = appearance1; this.favoritesFilterTB.Size = new System.Drawing.Size(209, 19); this.favoritesFilterTB.TabIndex = 7; this.favoritesFilterTB.UseOsThemes = Infragistics.Win.DefaultableBoolean.False; // // label1 // this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.SlateGray; this.label1.Location = new System.Drawing.Point(3, 5); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(160, 16); this.label1.TabIndex = 8; this.label1.Text = "Lyra Favoriten"; // // Favorites // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(593, 673); this.Controls.Add(this.favoritesSplitter); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "Favorites"; this.ShowInTaskbar = false; this.Text = "Favorites"; this.favoritesSplitter.Panel1.ResumeLayout(false); this.favoritesSplitter.Panel2.ResumeLayout(false); this.favoritesSplitter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.favoritesFilterTB)).EndInit(); this.ResumeLayout(false); }
// Search public void Search(string query, SongListBox resultBox, bool text, bool matchCase, bool whole, bool trans, SortMethod sortMethod) { if (!this.search.SearchCollection(query, this.SongList, resultBox, text, matchCase, whole, trans, sortMethod)) { resultBox.Items.Add("Leider keinen passenden Eintrag gefunden."); this.owner.Status = "query done - no results :-("; } else { this.owner.Status = "query done - successful :-)"; } }
/// <summary> /// Erforderliche Methode für die Designerunterstützung. /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GUI)); Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance(); Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.searchSplitter = new System.Windows.Forms.SplitContainer(); this.searchListBox = new Lyra2.LyraShell.SongListBox(); this.label4 = new System.Windows.Forms.Label(); this.songPreview3 = new Lyra2.LyraShell.SongPreview(); this.panel4 = new System.Windows.Forms.Panel(); this.sortCombo = new System.Windows.Forms.ComboBox(); this.sortLabel = new System.Windows.Forms.Label(); this.searchPaneTop = new System.Windows.Forms.Panel(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.label2 = new System.Windows.Forms.Label(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.mainSearchBox = new Lyra2.LyraShell.SearchTextBox(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.resultsLabel = new System.Windows.Forms.Label(); this.panel1 = new Infragistics.Win.Misc.UltraPanel(); this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel(); this.textBox1 = new Lyra2.LyraShell.SearchTextBox(); this.button7 = new Lyra2.LyraShell.LyraButtonControl(); this.showSongBtn = new Lyra2.LyraShell.LyraButtonControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.allSongsSplitter = new System.Windows.Forms.SplitContainer(); this.allSongsListBox = new Lyra2.LyraShell.SongListBox(); this.songPreview1 = new Lyra2.LyraShell.SongPreview(); this.controlPaneRight = new Infragistics.Win.Misc.UltraPanel(); this.songManagmentLabel = new Infragistics.Win.Misc.UltraLabel(); this.button3 = new Lyra2.LyraShell.LyraButtonControl(); this.button1 = new Lyra2.LyraShell.LyraButtonControl(); this.button2 = new Lyra2.LyraShell.LyraButtonControl(); this.button9 = new Lyra2.LyraShell.LyraButtonControl(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.persListSplitter = new System.Windows.Forms.SplitContainer(); this.personalListsListBox = new Lyra2.LyraShell.SongListBox(); this.panel8 = new System.Windows.Forms.Panel(); this.persListCombo = new System.Windows.Forms.ComboBox(); this.button5 = new Lyra2.LyraShell.LyraButtonControl(); this.moveUpDownPanel = new System.Windows.Forms.Panel(); this.moveListItemDownBtn = new Infragistics.Win.Misc.UltraButton(); this.moveListItemUpBtn = new Infragistics.Win.Misc.UltraButton(); this.songPreview2 = new Lyra2.LyraShell.SongPreview(); this.panel7 = new Infragistics.Win.Misc.UltraPanel(); this.listManagementLabel = new Infragistics.Win.Misc.UltraLabel(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); this.button6 = new Lyra2.LyraShell.LyraButtonControl(); this.button4 = new Lyra2.LyraShell.LyraButtonControl(); this.label3 = new System.Windows.Forms.Label(); this.textBox3 = new Lyra2.LyraShell.SearchTextBox(); this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); this.menuItem1 = new System.Windows.Forms.MenuItem(); this.menuItem13 = new System.Windows.Forms.MenuItem(); this.menuItem14 = new System.Windows.Forms.MenuItem(); this.menuItem15 = new System.Windows.Forms.MenuItem(); this.menuItem17 = new System.Windows.Forms.MenuItem(); this.menuItem30 = new System.Windows.Forms.MenuItem(); this.menuItem31 = new System.Windows.Forms.MenuItem(); this.menuItem18 = new System.Windows.Forms.MenuItem(); this.menuItem16 = new System.Windows.Forms.MenuItem(); this.menuItem2 = new System.Windows.Forms.MenuItem(); this.menuItem19 = new System.Windows.Forms.MenuItem(); this.menuItem35 = new System.Windows.Forms.MenuItem(); this.menuItem36 = new System.Windows.Forms.MenuItem(); this.menuItem20 = new System.Windows.Forms.MenuItem(); this.menuItem21 = new System.Windows.Forms.MenuItem(); this.menuItem51 = new System.Windows.Forms.MenuItem(); this.menuItem52 = new System.Windows.Forms.MenuItem(); this.menuItem69 = new System.Windows.Forms.MenuItem(); this.menuItem68 = new System.Windows.Forms.MenuItem(); this.menuItem53 = new System.Windows.Forms.MenuItem(); this.menuItem40 = new System.Windows.Forms.MenuItem(); this.menuItem63 = new System.Windows.Forms.MenuItem(); this.menuItem64 = new System.Windows.Forms.MenuItem(); this.menuItem38 = new System.Windows.Forms.MenuItem(); this.menuItem41 = new System.Windows.Forms.MenuItem(); this.menuItem45 = new System.Windows.Forms.MenuItem(); this.menuItem44 = new System.Windows.Forms.MenuItem(); this.menuItem49 = new System.Windows.Forms.MenuItem(); this.menuItem50 = new System.Windows.Forms.MenuItem(); this.menuItem43 = new System.Windows.Forms.MenuItem(); this.menuItem34 = new System.Windows.Forms.MenuItem(); this.menuItem46 = new System.Windows.Forms.MenuItem(); this.menuItem42 = new System.Windows.Forms.MenuItem(); this.menuItem47 = new System.Windows.Forms.MenuItem(); this.menuItem48 = new System.Windows.Forms.MenuItem(); this.menuItem24 = new System.Windows.Forms.MenuItem(); this.menuItem3 = new System.Windows.Forms.MenuItem(); this.menuItem57 = new System.Windows.Forms.MenuItem(); this.menuItem59 = new System.Windows.Forms.MenuItem(); this.menuItem65 = new System.Windows.Forms.MenuItem(); this.menuItem70 = new System.Windows.Forms.MenuItem(); this.menuItem58 = new System.Windows.Forms.MenuItem(); this.menuItem54 = new System.Windows.Forms.MenuItem(); this.menuItem55 = new System.Windows.Forms.MenuItem(); this.menuItem56 = new System.Windows.Forms.MenuItem(); this.menuItem61 = new System.Windows.Forms.MenuItem(); this.menuItem62 = new System.Windows.Forms.MenuItem(); this.menuItem10 = new System.Windows.Forms.MenuItem(); this.menuItem26 = new System.Windows.Forms.MenuItem(); this.menuItem23 = new System.Windows.Forms.MenuItem(); this.menuItem28 = new System.Windows.Forms.MenuItem(); this.menuItem27 = new System.Windows.Forms.MenuItem(); this.menuItem11 = new System.Windows.Forms.MenuItem(); this.menuItem22 = new System.Windows.Forms.MenuItem(); this.menuItem12 = new System.Windows.Forms.MenuItem(); this.menuItem4 = new System.Windows.Forms.MenuItem(); this.menuItem5 = new System.Windows.Forms.MenuItem(); this.menuItem33 = new System.Windows.Forms.MenuItem(); this.menuItem29 = new System.Windows.Forms.MenuItem(); this.menuItem32 = new System.Windows.Forms.MenuItem(); this.menuItem37 = new System.Windows.Forms.MenuItem(); this.statusBar1 = new System.Windows.Forms.StatusBar(); this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel(); this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel(); this.contextMenu1 = new System.Windows.Forms.ContextMenu(); this.menuItem6 = new System.Windows.Forms.MenuItem(); this.menuItem7 = new System.Windows.Forms.MenuItem(); this.menuItem39 = new System.Windows.Forms.MenuItem(); this.menuItem8 = new System.Windows.Forms.MenuItem(); this.menuItem25 = new System.Windows.Forms.MenuItem(); this.contextMenu2 = new System.Windows.Forms.ContextMenu(); this.menuItem60 = new System.Windows.Forms.MenuItem(); this.menuItem66 = new System.Windows.Forms.MenuItem(); this.menuItem67 = new System.Windows.Forms.MenuItem(); this.menuItem9 = new System.Windows.Forms.MenuItem(); this.tabControl1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.searchSplitter.Panel1.SuspendLayout(); this.searchSplitter.Panel2.SuspendLayout(); this.searchSplitter.SuspendLayout(); this.panel4.SuspendLayout(); this.searchPaneTop.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.panel1.ClientArea.SuspendLayout(); this.panel1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.allSongsSplitter.Panel1.SuspendLayout(); this.allSongsSplitter.Panel2.SuspendLayout(); this.allSongsSplitter.SuspendLayout(); this.controlPaneRight.ClientArea.SuspendLayout(); this.controlPaneRight.SuspendLayout(); this.tabPage3.SuspendLayout(); this.persListSplitter.Panel1.SuspendLayout(); this.persListSplitter.Panel2.SuspendLayout(); this.persListSplitter.SuspendLayout(); this.panel8.SuspendLayout(); this.moveUpDownPanel.SuspendLayout(); this.panel7.ClientArea.SuspendLayout(); this.panel7.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit(); this.SuspendLayout(); // // tabControl1 // this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage3); this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl1.Location = new System.Drawing.Point(0, 0); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(950, 449); this.tabControl1.TabIndex = 0; this.tabControl1.SelectedIndexChanged += this.tabControl1_SelectedIndexChanged; // // tabPage2 // this.tabPage2.BackColor = System.Drawing.Color.WhiteSmoke; this.tabPage2.Controls.Add(this.searchSplitter); this.tabPage2.Controls.Add(this.panel4); this.tabPage2.Controls.Add(this.panel1); this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Size = new System.Drawing.Size(942, 423); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Suche"; this.tabPage2.UseVisualStyleBackColor = true; // // searchSplitter // this.searchSplitter.Dock = System.Windows.Forms.DockStyle.Fill; this.searchSplitter.Location = new System.Drawing.Point(0, 60); this.searchSplitter.Name = "searchSplitter"; this.searchSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // searchSplitter.Panel1 // this.searchSplitter.Panel1.Controls.Add(this.searchListBox); this.searchSplitter.Panel1.Controls.Add(this.label4); this.searchSplitter.Panel1MinSize = 150; // // searchSplitter.Panel2 // this.searchSplitter.Panel2.Controls.Add(this.songPreview3); this.searchSplitter.Panel2MinSize = 50; this.searchSplitter.Size = new System.Drawing.Size(830, 363); this.searchSplitter.SplitterDistance = 266; this.searchSplitter.TabIndex = 18; // // searchListBox // this.searchListBox.Dock = System.Windows.Forms.DockStyle.Fill; this.searchListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.searchListBox.ItemHeight = 15; this.searchListBox.Location = new System.Drawing.Point(0, 0); this.searchListBox.Name = "searchListBox"; this.searchListBox.NrOfNumberMatches = 0; this.searchListBox.Size = new System.Drawing.Size(830, 244); this.searchListBox.TabIndex = 5; this.searchListBox.SelectedIndexChanged += this.listBox3_SelectedIndexChanged; this.searchListBox.DoubleClick += this.listBox3_dblClick; this.searchListBox.SelectedValueChanged += this.listBox3_SelectedValueChanged; // // label4 // this.label4.Dock = System.Windows.Forms.DockStyle.Bottom; this.label4.ForeColor = System.Drawing.Color.SaddleBrown; this.label4.Location = new System.Drawing.Point(0, 251); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(830, 15); this.label4.TabIndex = 14; this.label4.Text = "Suchergebnisse könnten fehlerhaft sein. Bitte Änderungen übernehmen!"; this.label4.Visible = false; // // songPreview3 // this.songPreview3.AutoScroll = true; this.songPreview3.Dock = System.Windows.Forms.DockStyle.Fill; this.songPreview3.Location = new System.Drawing.Point(0, 0); this.songPreview3.Name = "songPreview3"; this.songPreview3.Size = new System.Drawing.Size(830, 93); this.songPreview3.TabIndex = 0; // // panel4 // this.panel4.Controls.Add(this.sortCombo); this.panel4.Controls.Add(this.sortLabel); this.panel4.Controls.Add(this.searchPaneTop); this.panel4.Controls.Add(this.mainSearchBox); this.panel4.Controls.Add(this.checkBox1); this.panel4.Controls.Add(this.resultsLabel); this.panel4.Dock = System.Windows.Forms.DockStyle.Top; this.panel4.Location = new System.Drawing.Point(0, 0); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(830, 60); this.panel4.TabIndex = 17; // // sortCombo // this.sortCombo.BackColor = System.Drawing.Color.WhiteSmoke; this.sortCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.sortCombo.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.sortCombo.FormattingEnabled = true; this.sortCombo.Items.AddRange(new object[] { "Nummer (aufsteigend)", "Nummer (absteigend)", "Relevanz (absteigend)", "Relevanz (aufsteigend)", "Titel (aufsteigend)", "Titel (absteiged)" }); this.sortCombo.Location = new System.Drawing.Point(193, 32); this.sortCombo.Name = "sortCombo"; this.sortCombo.Size = new System.Drawing.Size(164, 21); this.sortCombo.TabIndex = 16; // // sortLabel // this.sortLabel.AutoSize = true; this.sortLabel.ForeColor = System.Drawing.Color.DimGray; this.sortLabel.Location = new System.Drawing.Point(111, 35); this.sortLabel.Name = "sortLabel"; this.sortLabel.Size = new System.Drawing.Size(76, 13); this.sortLabel.TabIndex = 15; this.sortLabel.Text = "Sortierung :"; // // searchPaneTop // this.searchPaneTop.BackColor = System.Drawing.Color.WhiteSmoke; this.searchPaneTop.Controls.Add(this.pictureBox4); this.searchPaneTop.Controls.Add(this.label2); this.searchPaneTop.Controls.Add(this.pictureBox1); this.searchPaneTop.Dock = System.Windows.Forms.DockStyle.Right; this.searchPaneTop.Location = new System.Drawing.Point(630, 0); this.searchPaneTop.Name = "searchPaneTop"; this.searchPaneTop.Size = new System.Drawing.Size(200, 60); this.searchPaneTop.TabIndex = 2; // // pictureBox4 // this.pictureBox4.Cursor = System.Windows.Forms.Cursors.Hand; this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image"))); this.pictureBox4.Location = new System.Drawing.Point(3, 8); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(22, 22); this.pictureBox4.TabIndex = 12; this.pictureBox4.TabStop = false; this.pictureBox4.Click += this.button8_Click; // // label2 // this.label2.AutoSize = true; this.label2.ForeColor = System.Drawing.Color.DimGray; this.label2.Location = new System.Drawing.Point(67, 12); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(121, 13); this.label2.TabIndex = 15; this.label2.Text = "Suche zurücksetzen"; // // pictureBox1 // this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand; this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(43, 8); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(22, 22); this.pictureBox1.TabIndex = 14; this.pictureBox1.TabStop = false; this.pictureBox1.Click += this.pictureBox1_Click; // // mainSearchBox // this.mainSearchBox.Anchor = ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.mainSearchBox.BackColor = System.Drawing.Color.FromArgb(((((253)))), ((((253)))), ((((176))))); this.mainSearchBox.DefaultText = "Suchbegriffe"; this.mainSearchBox.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); this.mainSearchBox.ForeColor = System.Drawing.Color.DimGray; this.mainSearchBox.Location = new System.Drawing.Point(8, 8); this.mainSearchBox.Name = "mainSearchBox"; this.mainSearchBox.Size = new System.Drawing.Size(616, 22); this.mainSearchBox.TabIndex = 0; this.mainSearchBox.Text = "Suchbegriffe"; this.mainSearchBox.TextChanged += this.textBox2_TextChanged; this.mainSearchBox.KeyDown += this.textBox2_KeyDown; // // checkBox1 // this.checkBox1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.checkBox1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); this.checkBox1.ForeColor = System.Drawing.Color.DimGray; this.checkBox1.Location = new System.Drawing.Point(8, 34); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(88, 18); this.checkBox1.TabIndex = 7; this.checkBox1.Text = "Nur Titel :"; this.checkBox1.CheckedChanged += this.checkBox3_CheckedChanged; // // resultsLabel // this.resultsLabel.BackColor = System.Drawing.Color.Transparent; this.resultsLabel.ForeColor = System.Drawing.Color.DimGray; this.resultsLabel.Location = new System.Drawing.Point(504, 32); this.resultsLabel.Name = "resultsLabel"; this.resultsLabel.Size = new System.Drawing.Size(100, 23); this.resultsLabel.TabIndex = 13; this.resultsLabel.TextAlign = System.Drawing.ContentAlignment.TopRight; // // panel1 // appearance1.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg; appearance1.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350); appearance1.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched; this.panel1.Appearance = appearance1; // // panel1.ClientArea // this.panel1.ClientArea.Controls.Add(this.ultraLabel1); this.panel1.ClientArea.Controls.Add(this.textBox1); this.panel1.ClientArea.Controls.Add(this.button7); this.panel1.ClientArea.Controls.Add(this.showSongBtn); this.panel1.Dock = System.Windows.Forms.DockStyle.Right; this.panel1.Location = new System.Drawing.Point(830, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(112, 423); this.panel1.TabIndex = 15; // // ultraLabel1 // appearance15.BackColor = System.Drawing.Color.Transparent; appearance15.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192))))); appearance15.BackColorAlpha = Infragistics.Win.Alpha.Opaque; appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal; appearance15.FontData.ItalicAsString = "True"; appearance15.ForeColor = System.Drawing.Color.DimGray; appearance15.TextHAlignAsString = "Left"; this.ultraLabel1.Appearance = appearance15; this.ultraLabel1.Location = new System.Drawing.Point(12, 87); this.ultraLabel1.Name = "ultraLabel1"; this.ultraLabel1.Padding = new System.Drawing.Size(10, 0); this.ultraLabel1.Size = new System.Drawing.Size(96, 26); this.ultraLabel1.TabIndex = 7; this.ultraLabel1.Text = "Quick\r\n View"; // // textBox1 // this.textBox1.DefaultText = "Nummer"; this.textBox1.ForeColor = System.Drawing.Color.DimGray; this.textBox1.Location = new System.Drawing.Point(12, 119); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(96, 21); this.textBox1.TabIndex = 0; this.textBox1.Text = "Nummer"; this.textBox1.Click += this.textBox1_Click; this.textBox1.KeyDown += this.textBox1_KeyDown; // // button7 // this.button7.Location = new System.Drawing.Point(28, 144); this.button7.Name = "button7"; this.button7.Size = new System.Drawing.Size(80, 22); this.button7.TabIndex = 1; this.button7.Text = "Anzeigen"; this.button7.Click += this.button7_Click; // // showSongBtn // appearance10.FontData.BoldAsString = "False"; appearance10.FontData.SizeInPoints = 11F; appearance10.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170))))); this.showSongBtn.Appearance = appearance10; this.showSongBtn.ForeColor = System.Drawing.Color.Brown; this.showSongBtn.Location = new System.Drawing.Point(12, 8); this.showSongBtn.Name = "showSongBtn"; this.showSongBtn.Size = new System.Drawing.Size(96, 46); this.showSongBtn.TabIndex = 4; this.showSongBtn.Text = "Anzeigen!"; this.showSongBtn.Click += this.listBox3_dblClick; // // tabPage1 // this.tabPage1.BackColor = System.Drawing.Color.WhiteSmoke; this.tabPage1.Controls.Add(this.allSongsSplitter); this.tabPage1.Controls.Add(this.controlPaneRight); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(942, 423); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Songliste"; this.tabPage1.UseVisualStyleBackColor = true; // // allSongsSplitter // this.allSongsSplitter.Dock = System.Windows.Forms.DockStyle.Fill; this.allSongsSplitter.Location = new System.Drawing.Point(0, 0); this.allSongsSplitter.Name = "allSongsSplitter"; this.allSongsSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // allSongsSplitter.Panel1 // this.allSongsSplitter.Panel1.Controls.Add(this.allSongsListBox); this.allSongsSplitter.Panel1MinSize = 150; // // allSongsSplitter.Panel2 // this.allSongsSplitter.Panel2.Controls.Add(this.songPreview1); this.allSongsSplitter.Panel2MinSize = 50; this.allSongsSplitter.Size = new System.Drawing.Size(830, 423); this.allSongsSplitter.SplitterDistance = 292; this.allSongsSplitter.TabIndex = 8; // // allSongsListBox // this.allSongsListBox.Dock = System.Windows.Forms.DockStyle.Fill; this.allSongsListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.allSongsListBox.ItemHeight = 15; this.allSongsListBox.Location = new System.Drawing.Point(0, 0); this.allSongsListBox.Name = "allSongsListBox"; this.allSongsListBox.NrOfNumberMatches = 0; this.allSongsListBox.RightToLeft = System.Windows.Forms.RightToLeft.No; this.allSongsListBox.Size = new System.Drawing.Size(830, 289); this.allSongsListBox.Sorted = true; this.allSongsListBox.TabIndex = 0; this.allSongsListBox.SelectedIndexChanged += this.listBox1_SelectedIndexChanged; this.allSongsListBox.DoubleClick += this.listBox1_dblClick; this.allSongsListBox.SelectedValueChanged += this.listBox1_SelectedValueChanged; // // songPreview1 // this.songPreview1.AutoScroll = true; this.songPreview1.Dock = System.Windows.Forms.DockStyle.Fill; this.songPreview1.Location = new System.Drawing.Point(0, 0); this.songPreview1.Name = "songPreview1"; this.songPreview1.Size = new System.Drawing.Size(830, 127); this.songPreview1.TabIndex = 0; // // controlPaneRight // appearance2.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg; appearance2.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350); appearance2.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched; this.controlPaneRight.Appearance = appearance2; // // controlPaneRight.ClientArea // this.controlPaneRight.ClientArea.Controls.Add(this.songManagmentLabel); this.controlPaneRight.ClientArea.Controls.Add(this.button3); this.controlPaneRight.ClientArea.Controls.Add(this.button1); this.controlPaneRight.ClientArea.Controls.Add(this.button2); this.controlPaneRight.ClientArea.Controls.Add(this.button9); this.controlPaneRight.Dock = System.Windows.Forms.DockStyle.Right; this.controlPaneRight.Location = new System.Drawing.Point(830, 0); this.controlPaneRight.Name = "controlPaneRight"; this.controlPaneRight.Size = new System.Drawing.Size(112, 423); this.controlPaneRight.TabIndex = 7; // // songManagmentLabel // appearance13.BackColor = System.Drawing.Color.Transparent; appearance13.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192))))); appearance13.BackColorAlpha = Infragistics.Win.Alpha.Opaque; appearance13.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal; appearance13.FontData.ItalicAsString = "True"; appearance13.ForeColor = System.Drawing.Color.DimGray; appearance13.TextHAlignAsString = "Left"; this.songManagmentLabel.Appearance = appearance13; this.songManagmentLabel.Location = new System.Drawing.Point(12, 87); this.songManagmentLabel.Name = "songManagmentLabel"; this.songManagmentLabel.Padding = new System.Drawing.Size(10, 0); this.songManagmentLabel.Size = new System.Drawing.Size(96, 26); this.songManagmentLabel.TabIndex = 6; this.songManagmentLabel.Text = "Lieder\r\n verwalten"; // // button3 // appearance12.FontData.BoldAsString = "False"; appearance12.FontData.SizeInPoints = 11F; appearance12.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170))))); this.button3.Appearance = appearance12; this.button3.ForeColor = System.Drawing.Color.Brown; this.button3.Location = new System.Drawing.Point(12, 8); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(96, 46); this.button3.TabIndex = 3; this.button3.Text = "Anzeigen!"; this.button3.Click += this.button3_Click; // // button1 // this.button1.Location = new System.Drawing.Point(12, 119); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(96, 28); this.button1.TabIndex = 1; this.button1.Text = "Neues Lied…"; this.button1.Click += this.button1_Click; // // button2 // this.button2.Location = new System.Drawing.Point(12, 153); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(96, 28); this.button2.TabIndex = 2; this.button2.Text = "Editieren…"; this.button2.Click += this.button2_Click; // // button9 // this.button9.Location = new System.Drawing.Point(12, 187); this.button9.Name = "button9"; this.button9.Size = new System.Drawing.Size(96, 28); this.button9.TabIndex = 5; this.button9.Text = "Löschen"; this.button9.Click += this.button9_Click; // // tabPage3 // this.tabPage3.BackColor = System.Drawing.Color.WhiteSmoke; this.tabPage3.Controls.Add(this.persListSplitter); this.tabPage3.Controls.Add(this.panel7); this.tabPage3.Location = new System.Drawing.Point(4, 22); this.tabPage3.Name = "tabPage3"; this.tabPage3.Size = new System.Drawing.Size(942, 423); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "Listen"; this.tabPage3.UseVisualStyleBackColor = true; // // persListSplitter // this.persListSplitter.Dock = System.Windows.Forms.DockStyle.Fill; this.persListSplitter.Location = new System.Drawing.Point(0, 0); this.persListSplitter.Name = "persListSplitter"; this.persListSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal; // // persListSplitter.Panel1 // this.persListSplitter.Panel1.Controls.Add(this.personalListsListBox); this.persListSplitter.Panel1.Controls.Add(this.panel8); this.persListSplitter.Panel1.Controls.Add(this.moveUpDownPanel); this.persListSplitter.Panel1MinSize = 150; // // persListSplitter.Panel2 // this.persListSplitter.Panel2.Controls.Add(this.songPreview2); this.persListSplitter.Panel2MinSize = 50; this.persListSplitter.Size = new System.Drawing.Size(830, 423); this.persListSplitter.SplitterDistance = 292; this.persListSplitter.TabIndex = 17; // // personalListsListBox // this.personalListsListBox.Dock = System.Windows.Forms.DockStyle.Fill; this.personalListsListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.personalListsListBox.ItemHeight = 15; this.personalListsListBox.Location = new System.Drawing.Point(24, 30); this.personalListsListBox.Name = "personalListsListBox"; this.personalListsListBox.NrOfNumberMatches = 0; this.personalListsListBox.Size = new System.Drawing.Size(806, 259); this.personalListsListBox.TabIndex = 0; this.personalListsListBox.SelectedIndexChanged += this.listBox2_SelectedIndexChanged; this.personalListsListBox.DoubleClick += this.listBox2_DoubleClick; this.personalListsListBox.SelectedValueChanged += this.listBox2_SelectedValueChanged; // // panel8 // this.panel8.Controls.Add(this.persListCombo); this.panel8.Controls.Add(this.button5); this.panel8.Dock = System.Windows.Forms.DockStyle.Top; this.panel8.Location = new System.Drawing.Point(24, 0); this.panel8.Name = "panel8"; this.panel8.Size = new System.Drawing.Size(806, 30); this.panel8.TabIndex = 15; // // persListCombo // this.persListCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.persListCombo.Location = new System.Drawing.Point(1, 4); this.persListCombo.Name = "persListCombo"; this.persListCombo.Size = new System.Drawing.Size(448, 21); this.persListCombo.TabIndex = 4; this.persListCombo.SelectedIndexChanged += this.comboBox1_SelectedIndexChanged; // // button5 // this.button5.Location = new System.Drawing.Point(455, 4); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(96, 21); this.button5.TabIndex = 2; this.button5.Text = "Neue Liste…"; this.button5.Click += this.button5_Click; // // moveUpDownPanel // this.moveUpDownPanel.Controls.Add(this.moveListItemDownBtn); this.moveUpDownPanel.Controls.Add(this.moveListItemUpBtn); this.moveUpDownPanel.Dock = System.Windows.Forms.DockStyle.Left; this.moveUpDownPanel.Location = new System.Drawing.Point(0, 0); this.moveUpDownPanel.Name = "moveUpDownPanel"; this.moveUpDownPanel.Size = new System.Drawing.Size(24, 292); this.moveUpDownPanel.TabIndex = 16; this.moveUpDownPanel.Resize += this.MoveUpDownPanelResizeHandler; // // moveListItemDownBtn // appearance7.BorderAlpha = Infragistics.Win.Alpha.Transparent; appearance7.ForegroundAlpha = Infragistics.Win.Alpha.Transparent; appearance7.ImageAlpha = Infragistics.Win.Alpha.Transparent; appearance7.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down; this.moveListItemDownBtn.Appearance = appearance7; this.moveListItemDownBtn.BackgroundImage = global::Lyra2.LyraShell.Properties.Resources.pfeilDown; this.moveListItemDownBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.moveListItemDownBtn.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless; appearance6.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down_over; this.moveListItemDownBtn.HotTrackAppearance = appearance6; this.moveListItemDownBtn.Location = new System.Drawing.Point(5, 136); this.moveListItemDownBtn.Name = "moveListItemDownBtn"; appearance9.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down_down; this.moveListItemDownBtn.PressedAppearance = appearance9; this.moveListItemDownBtn.ShowFocusRect = false; this.moveListItemDownBtn.ShowOutline = false; this.moveListItemDownBtn.Size = new System.Drawing.Size(13, 37); this.moveListItemDownBtn.TabIndex = 7; this.moveListItemDownBtn.UseFlatMode = Infragistics.Win.DefaultableBoolean.True; this.moveListItemDownBtn.UseHotTracking = Infragistics.Win.DefaultableBoolean.True; this.moveListItemDownBtn.UseOsThemes = Infragistics.Win.DefaultableBoolean.False; this.moveListItemDownBtn.Click += this.button12_Click; // // moveListItemUpBtn // appearance4.BorderAlpha = Infragistics.Win.Alpha.Transparent; appearance4.ForegroundAlpha = Infragistics.Win.Alpha.Transparent; appearance4.ImageAlpha = Infragistics.Win.Alpha.Transparent; appearance4.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up; appearance4.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched; this.moveListItemUpBtn.Appearance = appearance4; this.moveListItemUpBtn.BackgroundImage = global::Lyra2.LyraShell.Properties.Resources.pfeilUp; this.moveListItemUpBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.moveListItemUpBtn.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless; appearance5.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up_over; this.moveListItemUpBtn.HotTrackAppearance = appearance5; this.moveListItemUpBtn.Location = new System.Drawing.Point(5, 88); this.moveListItemUpBtn.Name = "moveListItemUpBtn"; appearance8.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up_down; this.moveListItemUpBtn.PressedAppearance = appearance8; this.moveListItemUpBtn.ShowFocusRect = false; this.moveListItemUpBtn.ShowOutline = false; this.moveListItemUpBtn.Size = new System.Drawing.Size(13, 37); this.moveListItemUpBtn.TabIndex = 8; this.moveListItemUpBtn.UseFlatMode = Infragistics.Win.DefaultableBoolean.True; this.moveListItemUpBtn.UseHotTracking = Infragistics.Win.DefaultableBoolean.True; this.moveListItemUpBtn.UseOsThemes = Infragistics.Win.DefaultableBoolean.False; this.moveListItemUpBtn.Click += this.button13_Click; // // songPreview2 // this.songPreview2.AutoScroll = true; this.songPreview2.Dock = System.Windows.Forms.DockStyle.Fill; this.songPreview2.Location = new System.Drawing.Point(0, 0); this.songPreview2.Name = "songPreview2"; this.songPreview2.Size = new System.Drawing.Size(830, 127); this.songPreview2.TabIndex = 0; // // panel7 // appearance3.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg; appearance3.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350); appearance3.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched; this.panel7.Appearance = appearance3; // // panel7.ClientArea // this.panel7.ClientArea.Controls.Add(this.listManagementLabel); this.panel7.ClientArea.Controls.Add(this.linkLabel1); this.panel7.ClientArea.Controls.Add(this.button6); this.panel7.ClientArea.Controls.Add(this.button4); this.panel7.ClientArea.Controls.Add(this.label3); this.panel7.ClientArea.Controls.Add(this.textBox3); this.panel7.Dock = System.Windows.Forms.DockStyle.Right; this.panel7.Location = new System.Drawing.Point(830, 0); this.panel7.Name = "panel7"; this.panel7.Size = new System.Drawing.Size(112, 423); this.panel7.TabIndex = 14; // // listManagementLabel // appearance14.BackColor = System.Drawing.Color.Transparent; appearance14.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192))))); appearance14.BackColorAlpha = Infragistics.Win.Alpha.Opaque; appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal; appearance14.FontData.ItalicAsString = "True"; appearance14.ForeColor = System.Drawing.Color.DimGray; appearance14.TextHAlignAsString = "Left"; this.listManagementLabel.Appearance = appearance14; this.listManagementLabel.Location = new System.Drawing.Point(12, 87); this.listManagementLabel.Name = "listManagementLabel"; this.listManagementLabel.Padding = new System.Drawing.Size(10, 0); this.listManagementLabel.Size = new System.Drawing.Size(96, 26); this.listManagementLabel.TabIndex = 15; this.listManagementLabel.Text = "Listen\r\n verwalten"; // // linkLabel1 // this.linkLabel1.ActiveLinkColor = System.Drawing.Color.Orange; this.linkLabel1.AutoSize = true; this.linkLabel1.BackColor = System.Drawing.Color.Transparent; this.linkLabel1.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((0))); this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((((64)))), ((((64)))), ((((64))))); this.linkLabel1.Location = new System.Drawing.Point(12, 169); this.linkLabel1.Name = "linkLabel1"; this.linkLabel1.Size = new System.Drawing.Size(24, 18); this.linkLabel1.TabIndex = 13; this.linkLabel1.TabStop = true; this.linkLabel1.Text = "<<"; this.linkLabel1.VisitedLinkColor = System.Drawing.Color.FromArgb(((((64)))), ((((64)))), ((((64))))); this.linkLabel1.Click += this.button10_Click; // // button6 // this.button6.Location = new System.Drawing.Point(12, 119); this.button6.Name = "button6"; this.button6.Size = new System.Drawing.Size(96, 27); this.button6.TabIndex = 3; this.button6.Text = "Lied entfernen"; this.button6.Click += this.button6_Click; // // button4 // appearance11.FontData.SizeInPoints = 11F; appearance11.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170))))); this.button4.Appearance = appearance11; this.button4.Location = new System.Drawing.Point(12, 8); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(96, 46); this.button4.TabIndex = 1; this.button4.Text = "Anzeigen!"; this.button4.Click += this.button4_Click; // // label3 // this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.ForeColor = System.Drawing.Color.DimGray; this.label3.Location = new System.Drawing.Point(12, 153); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(96, 13); this.label3.TabIndex = 12; this.label3.Text = "Lied hinzufügen"; // // textBox3 // this.textBox3.DefaultText = "Nummer"; this.textBox3.ForeColor = System.Drawing.Color.DimGray; this.textBox3.Location = new System.Drawing.Point(36, 169); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(72, 21); this.textBox3.TabIndex = 9; this.textBox3.Text = "Nummer"; this.textBox3.Click += this.textBox3_Click; this.textBox3.KeyDown += this.textBox3_KeyDown; // // mainMenu1 // this.mainMenu1.MenuItems.AddRange(new[] { this.menuItem1, this.menuItem19, this.menuItem57, this.menuItem10, this.menuItem4, this.menuItem37 }); // // menuItem1 // this.menuItem1.Index = 0; this.menuItem1.MenuItems.AddRange(new[] { this.menuItem13, this.menuItem14, this.menuItem17, this.menuItem18, this.menuItem16, this.menuItem2 }); this.menuItem1.Text = "&Datei"; // // menuItem13 // this.menuItem13.Enabled = false; this.menuItem13.Index = 0; this.menuItem13.Shortcut = System.Windows.Forms.Shortcut.CtrlS; this.menuItem13.Text = "Ü&bernehmen!"; this.menuItem13.Click += this.CommitMenuItemClickHandler; // // menuItem14 // this.menuItem14.Enabled = false; this.menuItem14.Index = 1; this.menuItem14.MenuItems.AddRange(new[] { this.menuItem15 }); this.menuItem14.Text = "Änderungen &verwerfen!"; // // menuItem15 // this.menuItem15.Index = 0; this.menuItem15.Text = "&Ok"; this.menuItem15.Click += this.menuItem15_Click; // // menuItem17 // this.menuItem17.Index = 2; this.menuItem17.MenuItems.AddRange(new[] { this.menuItem30, this.menuItem31 }); this.menuItem17.Text = "I&mportieren"; // // menuItem30 // this.menuItem30.Index = 0; this.menuItem30.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftI; this.menuItem30.Text = "&XML"; this.menuItem30.Click += this.menuItem30_Click; // // menuItem31 // this.menuItem31.Index = 1; this.menuItem31.Text = "<X (Liedtext-Format)"; this.menuItem31.Click += this.menuItem31_Click; // // menuItem18 // this.menuItem18.Index = 3; this.menuItem18.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftE; this.menuItem18.Text = "Ex&portieren…"; this.menuItem18.Click += this.menuItem18_Click; // // menuItem16 // this.menuItem16.Index = 4; this.menuItem16.Text = "-"; // // menuItem2 // this.menuItem2.Index = 5; this.menuItem2.Text = "Be&enden"; this.menuItem2.Click += this.menuItem2_Click; // // menuItem19 // this.menuItem19.Index = 1; this.menuItem19.MenuItems.AddRange(new[] { this.menuItem35, this.menuItem36, this.menuItem20, this.menuItem21, this.menuItem51, this.menuItem40, this.menuItem24, this.menuItem3 }); this.menuItem19.Text = "E&xtras"; // // menuItem35 // this.menuItem35.Index = 0; this.menuItem35.Shortcut = System.Windows.Forms.Shortcut.F12; this.menuItem35.Text = "&Präsentationsmodus"; this.menuItem35.Click += this.menuItem35_Click; // // menuItem36 // this.menuItem36.Index = 1; this.menuItem36.Text = "-"; // // menuItem20 // this.menuItem20.Enabled = false; this.menuItem20.Index = 2; this.menuItem20.Text = "Songbook drucken..."; // // menuItem21 // this.menuItem21.Index = 3; this.menuItem21.Text = "HTML Seite generieren…"; this.menuItem21.Click += this.menuItem21_Click; // // menuItem51 // this.menuItem51.Index = 4; this.menuItem51.MenuItems.AddRange(new[] { this.menuItem52, this.menuItem69 }); this.menuItem51.Text = "Unformatierter Text…"; // // menuItem52 // this.menuItem52.Index = 0; this.menuItem52.Text = "Ausgewählter Song"; this.menuItem52.Click += this.menuItem52_Click; // // menuItem69 // this.menuItem69.Index = 1; this.menuItem69.MenuItems.AddRange(new[] { this.menuItem68, this.menuItem53 }); this.menuItem69.Text = "Alle Songs"; // // menuItem68 // this.menuItem68.Index = 0; this.menuItem68.Text = "Titel-Index"; this.menuItem68.Click += this.menuItem68_Click; // // menuItem53 // this.menuItem53.Index = 1; this.menuItem53.Text = "Komplett"; this.menuItem53.Click += this.menuItem53_Click; // // menuItem40 // this.menuItem40.Index = 5; this.menuItem40.MenuItems.AddRange(new[] { this.menuItem63, this.menuItem64, this.menuItem38, this.menuItem41, this.menuItem45, this.menuItem44, this.menuItem43, this.menuItem34, this.menuItem46, this.menuItem42, this.menuItem47, this.menuItem48 }); this.menuItem40.Text = "E&xpertentools"; // // menuItem63 // this.menuItem63.Index = 0; this.menuItem63.Text = "Suchindex ern&euern"; this.menuItem63.Click += this.menuItem63_Click; // // menuItem64 // this.menuItem64.Index = 1; this.menuItem64.Text = "-"; // // menuItem38 // this.menuItem38.Index = 2; this.menuItem38.Text = "&Update lyra Songtexte..."; this.menuItem38.Click += this.menuItem38_Click; // // menuItem41 // this.menuItem41.Index = 3; this.menuItem41.Text = "Letztes Update &rückgängig machen"; this.menuItem41.Click += this.menuItem41_Click; // // menuItem45 // this.menuItem45.Index = 4; this.menuItem45.Text = "-"; // // menuItem44 // this.menuItem44.Enabled = false; this.menuItem44.Index = 5; this.menuItem44.MenuItems.AddRange(new[] { this.menuItem49, this.menuItem50 }); this.menuItem44.Text = "Dateien für Update-&Server erstellen"; // // menuItem49 // this.menuItem49.Index = 0; this.menuItem49.Text = "neuer Server..."; this.menuItem49.Click += this.menuItem49_Click; // // menuItem50 // this.menuItem50.Index = 1; this.menuItem50.Text = "für bestehenden Server..."; this.menuItem50.Click += this.menuItem50_Click; // // menuItem43 // this.menuItem43.Index = 6; this.menuItem43.Text = "-"; // // menuItem34 // this.menuItem34.Index = 7; this.menuItem34.Text = "Liste für &Pocket PC..."; this.menuItem34.Click += this.menuItem34_Click; // // menuItem46 // this.menuItem46.Index = 8; this.menuItem46.Text = "-"; // // menuItem42 // this.menuItem42.Enabled = false; this.menuItem42.Index = 9; this.menuItem42.Text = "&Vorbereiten für Lyra 2.0"; // // menuItem47 // this.menuItem47.Index = 10; this.menuItem47.Text = "-"; // // menuItem48 // this.menuItem48.Index = 11; this.menuItem48.Text = "Lyra neu starten! (ohne Übernehmen)"; this.menuItem48.Click += this.menuItem48_Click; // // menuItem24 // this.menuItem24.Index = 6; this.menuItem24.Text = "-"; // // menuItem3 // this.menuItem3.Index = 7; this.menuItem3.Text = "&Optionen…"; this.menuItem3.Click += this.menuItem3_Click; // // menuItem57 // this.menuItem57.Index = 2; this.menuItem57.MenuItems.AddRange(new[] { this.menuItem59, this.menuItem65, this.menuItem70, this.menuItem58, this.menuItem54, this.menuItem61, this.menuItem62 }); this.menuItem57.Text = "&Anzeige"; this.menuItem57.Popup += this.menuItem57_Popup; // // menuItem59 // this.menuItem59.Index = 0; this.menuItem59.Shortcut = System.Windows.Forms.Shortcut.CtrlH; this.menuItem59.Text = "History"; this.menuItem59.Click += this.menuItem59_Click; // // menuItem65 // this.menuItem65.Index = 1; this.menuItem65.Shortcut = System.Windows.Forms.Shortcut.CtrlR; this.menuItem65.Text = "Fernsteuerung"; this.menuItem65.Click += this.menuItem65_Click; // // menuItem70 // this.menuItem70.Index = 2; this.menuItem70.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftS; this.menuItem70.Text = "Style Editor"; this.menuItem70.Click += this.menuItem70_Click; // // menuItem58 // this.menuItem58.Index = 3; this.menuItem58.Text = "-"; // // menuItem54 // this.menuItem54.Index = 4; this.menuItem54.MenuItems.AddRange(new[] { this.menuItem55, this.menuItem56 }); this.menuItem54.Text = "Anzeige&schirm"; // // menuItem55 // this.menuItem55.Index = 0; this.menuItem55.Text = "Primär"; this.menuItem55.Click += this.menuItem55_Click; // // menuItem56 // this.menuItem56.Index = 1; this.menuItem56.Text = "Sekundär"; this.menuItem56.Click += this.menuItem56_Click; // // menuItem61 // this.menuItem61.Index = 5; this.menuItem61.Shortcut = System.Windows.Forms.Shortcut.CtrlB; this.menuItem61.Text = "Anzeige aus&blenden"; this.menuItem61.Click += this.menuItem61_Click; // // menuItem62 // this.menuItem62.Index = 6; this.menuItem62.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftB; this.menuItem62.Text = "Anzeige &schliessen"; this.menuItem62.Click += this.menuItem62_Click; // // menuItem10 // this.menuItem10.Index = 3; this.menuItem10.MenuItems.AddRange(new[] { this.menuItem26, this.menuItem23, this.menuItem27, this.menuItem11, this.menuItem22, this.menuItem12 }); this.menuItem10.Text = "aktuelle &Liste"; this.menuItem10.Visible = false; // // menuItem26 // this.menuItem26.Index = 0; this.menuItem26.Text = "&Anzeigen!"; this.menuItem26.Click += this.menuItem26_Click; // // menuItem23 // this.menuItem23.Index = 1; this.menuItem23.MenuItems.AddRange(new[] { this.menuItem28 }); this.menuItem23.Text = "Liste &löschen"; // // menuItem28 // this.menuItem28.Index = 0; this.menuItem28.Text = "&Ok"; this.menuItem28.Click += this.menuItem28_Click; // // menuItem27 // this.menuItem27.Index = 2; this.menuItem27.Text = "-"; // // menuItem11 // this.menuItem11.Index = 3; this.menuItem11.Text = "Neue Liste…"; this.menuItem11.Click += this.menuItem11_Click; // // menuItem22 // this.menuItem22.Index = 4; this.menuItem22.Text = "Liste &importieren…"; this.menuItem22.Click += this.menuItem22_Click; // // menuItem12 // this.menuItem12.Index = 5; this.menuItem12.Text = "Liste &exportieren…"; this.menuItem12.Click += this.menuItem12_Click; // // menuItem4 // this.menuItem4.Index = 4; this.menuItem4.MenuItems.AddRange(new[] { this.menuItem5, this.menuItem33, this.menuItem29, this.menuItem32 }); this.menuItem4.Text = "&Hilfe"; // // menuItem5 // this.menuItem5.Index = 0; this.menuItem5.Shortcut = System.Windows.Forms.Shortcut.F1; this.menuItem5.Text = "&Inhalt"; this.menuItem5.Click += this.menuItem5_Click; // // menuItem33 // this.menuItem33.Index = 1; this.menuItem33.Text = "In&fo"; this.menuItem33.Click += this.menuItem33_Click; // // menuItem29 // this.menuItem29.Index = 2; this.menuItem29.Text = "-"; this.menuItem29.Visible = false; // // menuItem32 // this.menuItem32.Index = 3; this.menuItem32.Shortcut = System.Windows.Forms.Shortcut.CtrlD; this.menuItem32.Text = "&Debug Console"; this.menuItem32.Visible = false; this.menuItem32.Click += this.menuItem32_Click; // // menuItem37 // this.menuItem37.Index = 5; this.menuItem37.Shortcut = System.Windows.Forms.Shortcut.F12; this.menuItem37.Text = "Präsentation b&eenden"; this.menuItem37.Visible = false; this.menuItem37.Click += this.menuItem35_Click; // // statusBar1 // this.statusBar1.Location = new System.Drawing.Point(0, 449); this.statusBar1.Name = "statusBar1"; this.statusBar1.Panels.AddRange(new[] { this.statusBarPanel1, this.statusBarPanel2 }); this.statusBar1.ShowPanels = true; this.statusBar1.Size = new System.Drawing.Size(950, 18); this.statusBar1.TabIndex = 1; this.statusBar1.Text = "d"; // // statusBarPanel1 // this.statusBarPanel1.Name = "statusBarPanel1"; this.statusBarPanel1.Text = "cur state/action"; this.statusBarPanel1.Width = 250; // // statusBarPanel2 // this.statusBarPanel2.Name = "statusBarPanel2"; this.statusBarPanel2.Text = "cur xml-path / options"; this.statusBarPanel2.Width = 330; // // contextMenu1 // this.contextMenu1.MenuItems.AddRange(new[] { this.menuItem6, this.menuItem7, this.menuItem39, this.menuItem8, this.menuItem25 }); // // menuItem6 // this.menuItem6.Index = 0; this.menuItem6.Text = "&Anzeigen!"; this.menuItem6.Click += this.menuItem6_Click; // // menuItem7 // this.menuItem7.Index = 1; this.menuItem7.Text = "&Editieren…"; this.menuItem7.Click += this.menuItem7_Click; // // menuItem39 // this.menuItem39.Index = 2; this.menuItem39.Text = "&Löschen"; this.menuItem39.Click += this.menuItem39_Click; // // menuItem8 // this.menuItem8.Index = 3; this.menuItem8.Text = "Zu aktueller &Liste hinzufügen"; this.menuItem8.Click += this.menuItem8_Click; // // menuItem25 // this.menuItem25.Index = 4; this.menuItem25.Text = "Überse&tzungen"; // // contextMenu2 // this.contextMenu2.MenuItems.AddRange(new[] { this.menuItem60, this.menuItem66, this.menuItem67, this.menuItem9 }); // // menuItem60 // this.menuItem60.Index = 0; this.menuItem60.Text = "&Anzeigen!"; this.menuItem60.Click += this.menuItem60_Click; // // menuItem66 // this.menuItem66.Index = 1; this.menuItem66.Text = "&Editieren…"; this.menuItem66.Click += this.menuItem66_Click; // // menuItem67 // this.menuItem67.Index = 2; this.menuItem67.Text = "&Löschen"; this.menuItem67.Click += this.menuItem67_Click; // // menuItem9 // this.menuItem9.Index = 3; this.menuItem9.Text = "Zu aktueller &Liste hinzufügen"; this.menuItem9.Click += this.menuItem9_Click; // // GUI // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.BackColor = System.Drawing.Color.WhiteSmoke; this.ClientSize = new System.Drawing.Size(950, 467); this.Controls.Add(this.tabControl1); this.Controls.Add(this.statusBar1); this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Menu = this.mainMenu1; this.MinimumSize = new System.Drawing.Size(500, 300); this.Name = "GUI"; this.Text = "lyra"; this.WindowState = System.Windows.Forms.FormWindowState.Minimized; this.Activated += this.MeGotFocus; this.Closing += this.Exit; this.tabControl1.ResumeLayout(false); this.tabPage2.ResumeLayout(false); this.searchSplitter.Panel1.ResumeLayout(false); this.searchSplitter.Panel2.ResumeLayout(false); this.searchSplitter.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel4.PerformLayout(); this.searchPaneTop.ResumeLayout(false); this.searchPaneTop.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.panel1.ClientArea.ResumeLayout(false); this.panel1.ClientArea.PerformLayout(); this.panel1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.allSongsSplitter.Panel1.ResumeLayout(false); this.allSongsSplitter.Panel2.ResumeLayout(false); this.allSongsSplitter.ResumeLayout(false); this.controlPaneRight.ClientArea.ResumeLayout(false); this.controlPaneRight.ResumeLayout(false); this.tabPage3.ResumeLayout(false); this.persListSplitter.Panel1.ResumeLayout(false); this.persListSplitter.Panel2.ResumeLayout(false); this.persListSplitter.ResumeLayout(false); this.panel8.ResumeLayout(false); this.moveUpDownPanel.ResumeLayout(false); this.panel7.ClientArea.ResumeLayout(false); this.panel7.ClientArea.PerformLayout(); this.panel7.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit(); this.ResumeLayout(false); }