コード例 #1
0
 public HelloWorldTaskUIMainWnd(TaskHost taskHost, object connections) :
     base(Title, TaskIcon, Description, taskHost, connections)
 {
     InitializeComponent();
     
     // Setup our views
     generalView = new GeneralView();
     this.DTSTaskUIHost.FastLoad = false;
     this.DTSTaskUIHost.AddView("General", generalView, null);
     this.DTSTaskUIHost.FastLoad = true;
 }
        public HelloWorldTaskUIMainWnd(TaskHost taskHost, object connections) :
            base(Title, TaskIcon, Description, taskHost, connections)
        {
            InitializeComponent();

            // Setup our views
            generalView = new GeneralView();
            this.DTSTaskUIHost.FastLoad = false;
            this.DTSTaskUIHost.AddView("General", generalView, null);
            this.DTSTaskUIHost.FastLoad = true;
        }