예제 #1
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="FillOrbitForm"/> class.
        /// </summary>
        public FillOrbitForm(StoryboardAssistantForm storyboardAssistantForm)
        {
            this.InitializeComponent();
            this.ReloadTheme();

            this.sunNameToolTip.SetToolTip(this.sunNameTextBox,
                                           "If you write here \"Sun\", suns will be called like \"Sun0\", \"Sun1\", \"Sun2\"...");

            this.emissionUpDown.Increment = 0.5M;
            this.storyboardAssistantForm  = storyboardAssistantForm;
        }
예제 #2
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="IntervalColorForm"/> class.
        /// </summary>
        public IntervalColorForm(StoryboardAssistantForm storyboardAssistantForm)
        {
            this.InitializeComponent();
            this.ReloadTheme();
            this.chosenColor = Array.Empty <Color>();
            this.stacked     = false;
            ToolTip toolTip = new();

            toolTip.SetToolTip(this.stackedCheckBox, "All your objects are changing color at the same time or one after another");
            this.storyboardAssistantForm = storyboardAssistantForm;
        }
예제 #3
0
        /// <summary>
        ///     Initializes a new instance of the <see cref="GeometryForm"/> class.
        /// </summary>
        public GeometryForm(StoryboardAssistantForm storyboardAssistantForm)
        {
            this.InitializeComponent();
            this.ReloadTheme();

            ToolTip helpButtonToolTip = new();

            helpButtonToolTip.SetToolTip(this.helpButton,
                                         "That's something like buffer to contain figures only \n " +
                                         "so if you mess up with the figures you will not mess up all the text in the Mainform");

            this.storyboardAssistantForm = storyboardAssistantForm;
        }
예제 #4
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="AutoGradientForm"/> class.
 /// </summary>
 public AutoGradientForm(StoryboardAssistantForm storyboardAssistantForm)
 {
     this.InitializeComponent();
     this.ReloadTheme();
     this.storyboardAssistantForm = storyboardAssistantForm;
 }