123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace UAS_SOP.CustomControl.BaseForm
- {
- public partial class BaseForm : Form
- {
- public BaseForm()
- {
- InitializeComponent();
- }
- private void BaseForm_Load(object sender, EventArgs e)
- {
- if (!DesignMode)
- {
-
- }
- }
- private void BaseForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- if (!DesignMode)
- {
-
-
- }
- }
- }
- }
|