22 lines
455 B
C#
22 lines
455 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 Sunny.UI.Demo
|
|
{
|
|
public partial class FTextBox : UITitlePage
|
|
{
|
|
public FTextBox()
|
|
{
|
|
InitializeComponent();
|
|
|
|
uiDatePicker1.Value = DateTime.Today;
|
|
uiTimePicker1.Value = DateTime.Now;
|
|
}
|
|
}
|
|
} |