2020-11-28 08:15:13 +00:00
|
|
|
|
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;
|
|
|
|
|
|
2023-02-21 01:46:13 +00:00
|
|
|
|
namespace 开发辅助工具.Controls
|
2020-11-28 08:15:13 +00:00
|
|
|
|
{
|
|
|
|
|
public partial class FrmInsertUnixTime : Form
|
|
|
|
|
{
|
|
|
|
|
public FrmInsertUnixTime()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2024-12-20 00:14:33 +00:00
|
|
|
|
public bool IsJsTime { get; set; } = false;
|
2020-11-28 08:15:13 +00:00
|
|
|
|
private void BtnOK_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
DialogResult = DialogResult.OK;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|