コード例 #1
0
        /// <summary>
        /// Instantiate a new RegistryControl class.
        /// </summary>
        /// <param name="application">Application to use as a backing store.</param>
        public RegistryControl(Scraper.Application application)
        {
            this.application = application;
            // This call is required by the Windows.Forms Form Designer.
            this.InitializeComponent();

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }
コード例 #2
0
ファイル: RegistryControl.cs プロジェクト: Jeremiahf/wix3
        /// <summary>
        /// Instantiate a new RegistryControl class.
        /// </summary>
        /// <param name="application">Application to use as a backing store.</param>
        public RegistryControl(Scraper.Application application)
        {
            this.application = application;
            // This call is required by the Windows.Forms Form Designer.
            this.InitializeComponent();

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }
コード例 #3
0
ファイル: FilesControl.cs プロジェクト: huangwenjiang/wix3
        /// <summary>
        /// Instantiate a new FilesControl class.
        /// </summary>
        public FilesControl()
        {
            // This call is required by the Windows.Forms Form Designer.
            this.InitializeComponent();

            this.header1.Index = 0;

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }
コード例 #4
0
        /// <summary>
        /// Instantiate a new FilesControl class.
        /// </summary>
        public FilesControl()
        {
            // This call is required by the Windows.Forms Form Designer.
            this.InitializeComponent();

            this.header1.Index = 0;

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }
コード例 #5
0
ファイル: PickEntryStep.cs プロジェクト: Jeremiahf/wix3
        /// <summary>
        /// Creates a pick entry step.
        /// </summary>
        public PickEntryStep()
        {
            this.InitializeComponent();

            Icon folderIcon = NativeMethods.GetDirectoryIcon(true, false);
            this.treeView.ImageList.Images.Add("folder", folderIcon);
            this.folderImageIndex = this.treeView.ImageList.Images.IndexOfKey("folder");

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }
コード例 #6
0
ファイル: PickEntryStep.cs プロジェクト: fyisa/wix3
        /// <summary>
        /// Creates a pick entry step.
        /// </summary>
        public PickEntryStep()
        {
            this.InitializeComponent();

            Icon folderIcon = NativeMethods.GetDirectoryIcon(true, false);

            this.treeView.ImageList.Images.Add("folder", folderIcon);
            this.folderImageIndex = this.treeView.ImageList.Images.IndexOfKey("folder");

            this.addTreeNodeCallback = new AddTreeNodeCallback(this.AddTreeNode);
        }