Наследование: System.Windows.Forms.UserControl
Пример #1
0
        public BuildStepCompile(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;
        }
Пример #2
0
        public BuildStepRun(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;
        }
        public BuildStepViewerOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;
        }
        public BuildStepViewerOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;
        }
Пример #5
0
        public BuildStepFiles(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;

            Sync();
        }
Пример #6
0
        public BuildStepFiles(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;

            Sync();
        }
        public BuildStepTrackingOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;

            TrackFlowCheckBox.AttachToolTip("Calls between functions are tracked so call graphs can work");

            TrackFieldsCheckBox.AttachToolTip("Set and get operations to class members are tracked");

            TrackInstancesCheckBox.AttachToolTip("Creation and deletion of classes are tracked, and class introspection is enabled");
        }
Пример #8
0
        public BuildStepTrackingOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;


            TrackFlowCheckBox.AttachToolTip("Calls between functions are tracked so call graphs can work");

            TrackFieldsCheckBox.AttachToolTip("Set and get operations to class members are tracked");

            TrackInstancesCheckBox.AttachToolTip("Creation and deletion of classes are tracked, and class introspection is enabled");
        }
        public BuildStepBuildOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;

            ReplaceOriginalCheckBox.AttachToolTip(
                @"Unchecked: XRay copies and re-compiles the selected files then runs them side by side the originals.
           This case maintains the relative paths the original files had for configuration, etc...

Checked: XRay overwrites the original files with XRayed versions, originals are put in a backup directory.
           Namespaces are kept the same so referencing assemblies should still work.");

            DecompileCSharpCheckBox.AttachToolTip("Recompile time takes signifigantly longer with this option");
        }
Пример #10
0
        public BuildStepBuildOptions(BuildFrame frame, BuildModel model)
        {
            InitializeComponent();

            Frame = frame;
            Model = model;

            ReplaceOriginalCheckBox.AttachToolTip(
            @"Unchecked: XRay copies and re-compiles the selected files then runs them side by side the originals.
               This case maintains the relative paths the original files had for configuration, etc...

            Checked: XRay overwrites the original files with XRayed versions, originals are put in a backup directory.
               Namespaces are kept the same so referencing assemblies should still work.");

            DecompileCSharpCheckBox.AttachToolTip("Recompile time takes signifigantly longer with this option");
        }