コード例 #1
0
ファイル: Form1.cs プロジェクト: friedforfun/Web-Browser
        private void EditFavourites_Click(object sender, EventArgs e)
        {
            EntryCollectionEditor favouritesEditor = new EntryCollectionEditor(favourites);

            favouritesEditor.Show();
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: friedforfun/Web-Browser
        private void EditHistory_Click(object sender, EventArgs e)
        {
            EntryCollectionEditor historyEditor = new EntryCollectionEditor(history);

            historyEditor.Show();
        }