Add project files.
This commit is contained in:
parent
a1d61115fa
commit
ad4e3ed6dd
22
TimeTable.sln
Normal file
22
TimeTable.sln
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.12.35527.113 d17.12
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeTable", "TimeTable\TimeTable.csproj", "{4897864C-76F4-40DA-90CB-0F95F56737BF}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{4897864C-76F4-40DA-90CB-0F95F56737BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{4897864C-76F4-40DA-90CB-0F95F56737BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{4897864C-76F4-40DA-90CB-0F95F56737BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{4897864C-76F4-40DA-90CB-0F95F56737BF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
17
TimeTable/Program.cs
Normal file
17
TimeTable/Program.cs
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
namespace TimeTable
|
||||||
|
{
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
|
// see https://aka.ms/applicationconfiguration.
|
||||||
|
ApplicationConfiguration.Initialize();
|
||||||
|
Application.Run(new Main());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
15
TimeTable/TimeTable.csproj
Normal file
15
TimeTable/TimeTable.csproj
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="controll\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
6
TimeTable/model/Basic.cs
Normal file
6
TimeTable/model/Basic.cs
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
namespace TimeTable.model {
|
||||||
|
internal class Basic {
|
||||||
|
DateTime time { get; set; }
|
||||||
|
string name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
160
TimeTable/view/Main.Designer.cs
generated
Normal file
160
TimeTable/view/Main.Designer.cs
generated
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
namespace TimeTable
|
||||||
|
{
|
||||||
|
partial class Main
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent() {
|
||||||
|
btnPanel = new Panel();
|
||||||
|
btnTaskStop = new Button();
|
||||||
|
btnTaskStart = new Button();
|
||||||
|
btnStopResume = new Button();
|
||||||
|
btnStart = new Button();
|
||||||
|
tableView = new Panel();
|
||||||
|
dataGridView1 = new DataGridView();
|
||||||
|
btnPanel.SuspendLayout();
|
||||||
|
tableView.SuspendLayout();
|
||||||
|
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
||||||
|
SuspendLayout();
|
||||||
|
//
|
||||||
|
// btnPanel
|
||||||
|
//
|
||||||
|
btnPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
|
btnPanel.Controls.Add(btnTaskStop);
|
||||||
|
btnPanel.Controls.Add(btnTaskStart);
|
||||||
|
btnPanel.Controls.Add(btnStopResume);
|
||||||
|
btnPanel.Controls.Add(btnStart);
|
||||||
|
btnPanel.Dock = DockStyle.Left;
|
||||||
|
btnPanel.Location = new Point(0, 0);
|
||||||
|
btnPanel.Name = "btnPanel";
|
||||||
|
btnPanel.Size = new Size(233, 171);
|
||||||
|
btnPanel.TabIndex = 0;
|
||||||
|
//
|
||||||
|
// btnTaskStop
|
||||||
|
//
|
||||||
|
btnTaskStop.Location = new Point(103, 38);
|
||||||
|
btnTaskStop.Name = "btnTaskStop";
|
||||||
|
btnTaskStop.Size = new Size(114, 29);
|
||||||
|
btnTaskStop.TabIndex = 3;
|
||||||
|
btnTaskStop.Text = "Task Stop";
|
||||||
|
btnTaskStop.UseVisualStyleBackColor = true;
|
||||||
|
btnTaskStart.Click += this.btnTaskStopClick;
|
||||||
|
|
||||||
|
//
|
||||||
|
// btnTaskStart
|
||||||
|
//
|
||||||
|
btnTaskStart.Location = new Point(3, 38);
|
||||||
|
btnTaskStart.Name = "btnTaskStart";
|
||||||
|
btnTaskStart.Size = new Size(94, 29);
|
||||||
|
btnTaskStart.TabIndex = 2;
|
||||||
|
btnTaskStart.Text = "Task Start";
|
||||||
|
btnTaskStart.UseVisualStyleBackColor = true;
|
||||||
|
btnTaskStart.Click += this.btnTaskStartClick;
|
||||||
|
//
|
||||||
|
// btnStopResume
|
||||||
|
//
|
||||||
|
btnStopResume.Location = new Point(103, 3);
|
||||||
|
btnStopResume.Name = "btnStopResume";
|
||||||
|
btnStopResume.Size = new Size(114, 29);
|
||||||
|
btnStopResume.TabIndex = 1;
|
||||||
|
btnStopResume.Text = "Stop/Resume";
|
||||||
|
btnStopResume.UseVisualStyleBackColor = true;
|
||||||
|
btnTaskStart.Click += this.btnStopResumeClick;
|
||||||
|
//
|
||||||
|
// btnStart
|
||||||
|
//
|
||||||
|
btnStart.Location = new Point(3, 3);
|
||||||
|
btnStart.Name = "btnStart";
|
||||||
|
btnStart.Size = new Size(94, 29);
|
||||||
|
btnStart.TabIndex = 0;
|
||||||
|
btnStart.Text = "Start";
|
||||||
|
btnStart.UseVisualStyleBackColor = true;
|
||||||
|
btnStart.Click += this.btnStartClick;
|
||||||
|
//
|
||||||
|
// tableView
|
||||||
|
//
|
||||||
|
tableView.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
||||||
|
tableView.Controls.Add(dataGridView1);
|
||||||
|
tableView.Dock = DockStyle.Right;
|
||||||
|
tableView.Location = new Point(239, 0);
|
||||||
|
tableView.Name = "tableView";
|
||||||
|
tableView.Size = new Size(477, 171);
|
||||||
|
tableView.TabIndex = 1;
|
||||||
|
//
|
||||||
|
// dataGridView1
|
||||||
|
//
|
||||||
|
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||||
|
dataGridView1.Dock = DockStyle.Fill;
|
||||||
|
dataGridView1.Location = new Point(0, 0);
|
||||||
|
dataGridView1.Name = "dataGridView1";
|
||||||
|
dataGridView1.RowHeadersWidth = 51;
|
||||||
|
dataGridView1.Size = new Size(477, 171);
|
||||||
|
dataGridView1.TabIndex = 0;
|
||||||
|
//
|
||||||
|
// Main
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(716, 171);
|
||||||
|
Controls.Add(tableView);
|
||||||
|
Controls.Add(btnPanel);
|
||||||
|
Name = "Main";
|
||||||
|
Text = "TimeTable";
|
||||||
|
btnPanel.ResumeLayout(false);
|
||||||
|
tableView.ResumeLayout(false);
|
||||||
|
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
||||||
|
ResumeLayout(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private void btnStartClick(object sender, EventArgs e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void btnTaskStartClick(object sender, EventArgs e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void btnStopResumeClick(object sender, EventArgs e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
private void btnTaskStopClick(object sender, EventArgs e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private Panel btnPanel;
|
||||||
|
private Button btnTaskStop;
|
||||||
|
private Button btnTaskStart;
|
||||||
|
private Button btnStopResume;
|
||||||
|
private Button btnStart;
|
||||||
|
private Panel tableView;
|
||||||
|
private DataGridView dataGridView1;
|
||||||
|
}
|
||||||
|
}
|
7
TimeTable/view/Main.cs
Normal file
7
TimeTable/view/Main.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace TimeTable {
|
||||||
|
public partial class Main : Form {
|
||||||
|
public Main() {
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
120
TimeTable/view/Main.resx
Normal file
120
TimeTable/view/Main.resx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
Loading…
x
Reference in New Issue
Block a user