25 lines
501 B
C#
25 lines
501 B
C#
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 SuperDesign.Controls
|
|
{
|
|
public partial class FrmInsertUnixTime : Form
|
|
{
|
|
public FrmInsertUnixTime()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void BtnOK_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
}
|
|
}
|