Skip to content

Commit

Permalink
add schedule packet, panelschedule edit.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuseop-choung committed Jun 3, 2021
1 parent ecb968a commit 3fe2918
Show file tree
Hide file tree
Showing 14 changed files with 440 additions and 42 deletions.
10 changes: 10 additions & 0 deletions Client/Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@
<Compile Include="Forms\ControlRoomCard.Designer.cs">
<DependentUpon>ControlRoomCard.cs</DependentUpon>
</Compile>
<Compile Include="Forms\ControlSchedule.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Forms\ControlSchedule.Designer.cs">
<DependentUpon>ControlSchedule.cs</DependentUpon>
</Compile>
<Compile Include="Forms\FormRoom.cs">
<SubType>Form</SubType>
</Compile>
Expand Down Expand Up @@ -162,6 +168,9 @@
<EmbeddedResource Include="Forms\ControlRoomCard.resx">
<DependentUpon>ControlRoomCard.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\ControlSchedule.resx">
<DependentUpon>ControlSchedule.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormRoom.resx">
<DependentUpon>FormRoom.cs</DependentUpon>
</EmbeddedResource>
Expand Down Expand Up @@ -273,6 +282,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="logo.ico" />
<None Include="Resources\add.png" />
<None Include="Resources\picture.png" />
</ItemGroup>
<ItemGroup>
Expand Down
30 changes: 15 additions & 15 deletions Client/Forms/ControlRoomCard.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

128 changes: 128 additions & 0 deletions Client/Forms/ControlSchedule.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 34 additions & 0 deletions Client/Forms/ControlSchedule.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Controls;

namespace Client.Forms
{
public partial class ControlSchedule : MetroUserControl
{
public ControlSchedule()
{
InitializeComponent();

determine_Color();
}

private void determine_Color()
{
//경우에 따라 imagelist color 설정
}

private void picContent_Click(object sender, EventArgs e)
{
//'+' 아이콘 클릭 시 일정 내용 메세지박스로 출력

}
}
}
Loading

0 comments on commit 3fe2918

Please sign in to comment.