たぶんブラウザ

Form1.Desiner.csを忘れていました。

http://d.hatena.ne.jp/kabacsharp/20110122 の追記分です。 using System.Windows.Forms; namespace ABCS { partial class frmMain { /// /// 必要なデザイナ変数です。 /// private System.ComponentModel.IContainer components = null; /// /// 使用中の…

フォームクラス

ファイル名:Form1.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; using System.Collections; using ABCS…

ラジオボタンとグループ

ファイル名:MyGroup.cs using System; using System.Windows.Forms; using System.ComponentModel; /// /// Summary description for Class1 /// public class MyGroup : GroupBox { private RadioButton[] rbtns = new RadioButton[5]; public MyGroup( Sy…

お気に入りを取り込むツリービュー

ファイル名:Classes\Util.cs using System; using System.Collections.Generic; using System.Text; using System.Collections; using System.IO; using System.Xml; using System.Windows.Forms; namespace ABCS.Classes { class Util { } public class My…

スライドボタン

ファイル名:Classes\SlidingButton.cs using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; namespace ABCS.Classes { public delegate void OnResizeHook4Form(); public class Slidi…

タブページ

ファイル名:Classes\MyTabPageWithWeb.cs using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using ABCS.Interfaces; namespace ABCS.Classes { public class MyTabPageWithWeb : TabPage { private MyTabW…

WebBrowserコンポーネント

WebBrowserコンポーネントは2種類あります。ファイル名:Classes\MySnapWebBrowser.cs using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.ComponentModel; using System.Runtime.InteropServic…

タブコントロール

たぶんブラウザのタブコントロールのソース 2つファイルがあります。ファイル名:Classes\KAnisTabControl.cs using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; using System.Compo…