C#: 日付と時間を表す

  • csharp
  • 閲覧1788
10
using System;
using System.Drawing;
using System.Windows.Forms;

class timer
{
  public static void Main()
  {
    Application.Run(new MyForm());
  }
}

class MyForm : Form
{
  MyStatus ms;
  
  public MyForm()
  {
    Text = "timer";
    BackColor = SystemColors.Wind...

///*** 無料ユーザー登録後、正常なすべてのコードが表示されます ***///

					
2018-12-13

C#: 日付と時間を表す

コードの説明
日付と時間を表示するGUIです。