Пример #1
0
 /// <summary>
 /// Triggers when the animations button is clicked.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 private void BtnAnimationsClick(object sender, EventArgs e)
 {
     ComponentForm form = new ComponentForm(AnimationsElement);
     form.Show();
 }
Пример #2
0
 /// <summary>
 /// Triggers when the custom button is clicked.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 private void BtnCustomClick(object sender, EventArgs e)
 {
     ComponentForm form = new ComponentForm(CustomElement);
     form.Show();
 }
Пример #3
0
 /// <summary>
 /// Triggers when the logics button is clicked.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 private void BtnLogicsClick(object sender, EventArgs e)
 {
     ComponentForm form = new ComponentForm(LogicsElement);
     form.Show();
 }