コード例 #1
0
ファイル: KexplorerPanel.cs プロジェクト: ox1111/Kexplorer
        public KexplorerPanel(Form newMainForm, string currentFolderName, ArrayList drives)
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            this.controller.Initialize(this, currentFolderName, drives);
        }
コード例 #2
0
ファイル: KexplorerPanel.cs プロジェクト: ox1111/Kexplorer
        public KexplorerPanel(Form newMainForm, FtpSite ftpSite)
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            this.controller.Initialize(this, ftpSite);
        }
コード例 #3
0
ファイル: KexplorerPanel.cs プロジェクト: kcsampson/Kexplorer
        public KexplorerPanel(Form newMainForm, FtpSite ftpSite)
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            this.controller.Initialize(this, ftpSite);
        }
コード例 #4
0
ファイル: KexplorerPanel.cs プロジェクト: kcsampson/Kexplorer
        public KexplorerPanel( Form newMainForm, string currentFolderName, ArrayList drives )
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            this.controller.Initialize( this, currentFolderName, drives );
        }
コード例 #5
0
        public KExplorerForm()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            this.controller = new KExplorerControl();

            this.controller.Initialize(null);
        }
コード例 #6
0
ファイル: KexplorerPanel.cs プロジェクト: ox1111/Kexplorer
        public KexplorerPanel(Form newMainForm)
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            // Lazy handled by the tab page manager.
            this.controller.Initialize(this);
            //this.InitializeOnce();
        }
コード例 #7
0
ファイル: KexplorerPanel.cs プロジェクト: kcsampson/Kexplorer
        public KexplorerPanel( Form newMainForm )
        {
            this.mainForm = newMainForm;
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            this.controller = new KExplorerControl();

            // Lazy handled by the tab page manager.
            this.controller.Initialize( this );
            //this.InitializeOnce();
        }
コード例 #8
0
ファイル: KExplorerForm.cs プロジェクト: kcsampson/Kexplorer
        public KExplorerForm()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //
            this.controller = new KExplorerControl();

            this.controller.Initialize(null);
        }