第三章員工打卡

来源:http://www.cnblogs.com/wangdan123/archive/2017/03/15/6553544.html
-Advertisement-
Play Games

namespace 員工信息維護{ public partial class FrmMain : Form { public FrmMain() { InitializeComponent(); } //列表,用於保存 SE 對象 public List<SE> programmerList = n ...


namespace 員工信息維護
{
public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
}

//列表,用於保存 SE 對象
public List<SE> programmerList = new List<SE>();
//刷新DataGrindView數據
public void BindGrid(List<SE> list)
{
this.dataGridView1.DataSource = new BindingList<SE>(list);
}


private void toolStripButton1_Click(object sender, EventArgs e)
{
frmMaintance jj = new frmMaintance();
//調用父窗體
jj.FrmParent = this;
jj.Show();
}

private void toolStripButton4_Click(object sender, EventArgs e)
{
frmRecord dk = new frmRecord();
dk.recordList = this.recordList;
dk.Show();
}

private void big_Load(object sender, EventArgs e)
{
//xianshi();
}
//查詢
private void button1_Click(object sender, EventArgs e)
{
List<SE> tempList = new List<SE>();
foreach(SE item in this.programmerList){
if (item.no.IndexOf(this.textBox1.Text.Trim())!=-1) {
tempList.Add(item);
}

this.dataGridView1.DataSource = new BindingList<SE>(tempList);
}
}

private void toolStripButton3_Click(object sender, EventArgs e)
{
DialogResult re = MessageBox.Show("確認要刪除該數據嗎", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
if (re == DialogResult.OK)
{
foreach (SE item in this.programmerList)
{
if (dataGridView1.SelectedRows[0].Cells[0].Value==item.no)
{
programmerList.Remove(item);
break;
}

}
MessageBox.Show("刪除成功");
this.dataGridView1.DataSource = new BindingList<SE>(programmerList);
}
//this.dataGridView1.DataSource = new BindingList<SE>(temp);

}
//簽到


public Dictionary<string, Records> recordList = new Dictionary<string, Records>();

private void 簽到ToolStripMenuItem_Click(object sender, EventArgs e)
{
//驗證是否有選中的行
if (this.dataGridView1.SelectedRows.Count != 1)
{
MessageBox.Show("請選中一行!");
return;
}
//確保沒有簽到過
string workNo = this.dataGridView1.CurrentRow.Cells[0].Value.ToString();
MessageBox.Show(workNo);
foreach (string id in recordList.Keys)
{
if (workNo == id)
{
MessageBox.Show("您已經簽到過了!");
return;
}
}
//簽到
Records record = new Records();
record.ID = workNo;
record.Name = this.dataGridView1.SelectedRows[0].Cells[1].Value.ToString();
record.SignInTime = DateTime.Now;
//添加簽到信息到記錄中
this.recordList.Add(record.ID, record);
MessageBox.Show("簽到成功!");
}

private void 簽退ToolStripMenuItem_Click(object sender, EventArgs e)
{

//驗證是否有選中的行
if (this.dataGridView1.SelectedRows.Count != 1)
{
MessageBox.Show("請選中一行!");
return;
}
string ID = this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString();
//標識是否已簽到過
bool isOut = false;
//遍歷key,與ID對比,若相等可以簽退,反之不行.
foreach (string key in recordList.Keys)
{
if (key == ID)
{
//簽退時間
this.recordList[key].SignOutTime = DateTime.Now;
MessageBox.Show("簽退成功!");
isOut = true;
break;
}
}
if (!isOut)
{
MessageBox.Show("很抱歉,尚未簽到!");
}

}

 

}

}

 

public partial class frmMaintance : Form
{
// big FrmParent = new big ();
//初始化
public frmMaintance()
{
InitializeComponent();
this.comboBox1.SelectedIndex = 0;
}



//big FimParant=new big ();
//保存父窗體的引用
public FrmMain FrmParent { get; set; }

// public static List<SE>programmerList=new List<SE>();
private void button1_Click(object sender, EventArgs e)
{
try
{

SE pp = new SE();
pp.no = this.textBox1.Text.Trim();
pp.age = Int32.Parse(this.textBox2.Text.Trim());
pp.sex = this.comboBox1.Text;
pp.name = this.textBox3.Text;
foreach (SE item in FrmParent.programmerList)
{
if (pp.no == item.no)
{
MessageBox.Show("此工號已存在");
return;
}
}
FrmParent.programmerList.Add(pp);
this.Close();

}
catch (Exception ex)
{
Console.WriteLine(ex.Message);

}
finally
{
//刷新父窗體信息
this.FrmParent.BindGrid(FrmParent.programmerList);
}
}

private void frmMaintance_Load(object sender, EventArgs e)
{

}



}

 

 

 

public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
}

//列表,用於保存 SE 對象
public List<SE> programmerList = new List<SE>();
//刷新DataGrindView數據
public void BindGrid(List<SE> list)
{
this.dataGridView1.DataSource = new BindingList<SE>(list);
}


private void toolStripButton1_Click(object sender, EventArgs e)
{
frmMaintance jj = new frmMaintance();
//調用父窗體
jj.FrmParent = this;
jj.Show();
}

private void toolStripButton4_Click(object sender, EventArgs e)
{
frmRecord dk = new frmRecord();
dk.recordList = this.recordList;
dk.Show();
}

private void big_Load(object sender, EventArgs e)
{
//xianshi();
}
//查詢
private void button1_Click(object sender, EventArgs e)
{
List<SE> tempList = new List<SE>();
foreach(SE item in this.programmerList){
if (item.no.IndexOf(this.textBox1.Text.Trim())!=-1) {
tempList.Add(item);
}

this.dataGridView1.DataSource = new BindingList<SE>(tempList);
}
}

private void toolStripButton3_Click(object sender, EventArgs e)
{
DialogResult re = MessageBox.Show("確認要刪除該數據嗎", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
if (re == DialogResult.OK)
{
foreach (SE item in this.programmerList)
{
if (dataGridView1.SelectedRows[0].Cells[0].Value==item.no)
{
programmerList.Remove(item);
break;
}

}
MessageBox.Show("刪除成功");
this.dataGridView1.DataSource = new BindingList<SE>(programmerList);
}
//this.dataGridView1.DataSource = new BindingList<SE>(temp);

}
//簽到


public Dictionary<string, Records> recordList = new Dictionary<string, Records>();

private void 簽到ToolStripMenuItem_Click(object sender, EventArgs e)
{
//驗證是否有選中的行
if (this.dataGridView1.SelectedRows.Count != 1)
{
MessageBox.Show("請選中一行!");
return;
}
//確保沒有簽到過
string workNo = this.dataGridView1.CurrentRow.Cells[0].Value.ToString();
MessageBox.Show(workNo);
foreach (string id in recordList.Keys)
{
if (workNo == id)
{
MessageBox.Show("您已經簽到過了!");
return;
}
}
//簽到
Records record = new Records();
record.ID = workNo;
record.Name = this.dataGridView1.SelectedRows[0].Cells[1].Value.ToString();
record.SignInTime = DateTime.Now;
//添加簽到信息到記錄中
this.recordList.Add(record.ID, record);
MessageBox.Show("簽到成功!");
}

private void 簽退ToolStripMenuItem_Click(object sender, EventArgs e)
{

//驗證是否有選中的行
if (this.dataGridView1.SelectedRows.Count != 1)
{
MessageBox.Show("請選中一行!");
return;
}
string ID = this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString();
//標識是否已簽到過
bool isOut = false;
//遍歷key,與ID對比,若相等可以簽退,反之不行.
foreach (string key in recordList.Keys)
{
if (key == ID)
{
//簽退時間
this.recordList[key].SignOutTime = DateTime.Now;
MessageBox.Show("簽退成功!");
isOut = true;
break;
}
}
if (!isOut)
{
MessageBox.Show("很抱歉,尚未簽到!");
}

}

 

}

}

 

public partial class frmRecord : Form
{

public Dictionary<string, Records> recordList { get; set; }
public frmRecord()
{
InitializeComponent();
}

private void DK_Load(object sender, EventArgs e)
{

BindingSource bs = new BindingSource();
bs.DataSource = recordList.Values;
this.dataGridView1.DataSource = bs;
Rows();
}

public void Rows()
{
int row = this.dataGridView1.RowCount;
this.label1.Text = "共有" + row + "條打卡記錄";
}

private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{

}

}

 

  //員工類

public class SE
{

public string no { get; set; }
public int age { get; set; }
public string name { get; set; }
public string sex { get; set; }

 

  //打卡信息類

public class Records
{

public DateTime SignInTime { get; set; }
public DateTime SignOutTime { get; set; }
public string ID { get; set; }
public string Name { get; set; }


}

 

static class Program
{

// 應用程式的主入口點。

[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());
}
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 裝系統 Deepin是一個國產的linux發行版,因為其極高的顏值和不需要折騰的操作吸引了我。正好厭倦了windows 10,又趕上大四的畢業設計,就拿來玩玩了。 首先,Deepin系統的安裝是非常傻瓜式的,參照官網上的 "教程" 幾步就可裝好。我採用的是體驗安裝,重啟之後即可選擇進入Deepin系 ...
  • 之前要在linux下麵安裝nginx,弄了半天,終於搞定了,下麵給大家詳細一下安裝流程及安裝報錯解決方案: 安裝共分為5步搞定: 1.進入src目錄(下載存放目錄) cd /usr/local/src/ 2.wget下載:http://nginx.org/en/download.html(nginx ...
  • Windows 10 中包含了一個 WSL(Windows Subsystem for Linux)子系統,我們可以在其中運行未經修改過的原生 Linux ELF 可執行文件。利用它我們可以做很多事情,對開發人員和普通用戶都是如此。當然對開發人員的吸引力更大一些,因為這意味著在一些情況,不再需要使用... ...
  • 本文首發於:http://www.fengzheng.pub/archives/238.html 背景說明 伺服器為阿裡雲 ECS,操作系統為 CentOS 6.5。 部署配置說明 第一步,安裝nginx 之所以要先安裝 nginx,是因為下麵配置功能變數名稱解析的時候可以直接在瀏覽器看到效果,當然了,先配 ...
  • 序言 提到LVS,就從章文嵩博士開始吧,反正也不知道如何下筆來寫這一篇。章大博士,讀博時候創建這個lvs軟體項目,但是他提倡開源精神,在用戶的建議和反饋中,這個花了他兩周時間開發的開源軟體不斷得到改建和豐富。到1999年,該款軟體已在負載均衡領域中比較出名,章文嵩仍舊堅持開源,將源代碼分享給所有人。 ...
  • 前兩篇介紹了uboot 2013.01的配置原理以及大體的運行流程,本文將討論如何對uboot源碼進行配置,將一個可用的uboot燒錄到SD卡中。 定製自己的core board 市面上能買到的開發板的核心板基本都是基於官方參考板製作的,所以雖然標準操作是"定製"自己的core board,但鑒於我 ...
  • 經過了上一篇的配置,我們已經執行make就可以編譯出一個uboot.bin,但這還不夠,首先,此時的uboot並不符合三星晶元對bootloader的格式要求,其次,此時的uboot.bin也沒有結合我們的開發板進行配置,還無法使用。而要進行這樣的個性化配置,前提條件就是對uboot開機流程和編譯系 ...
  • 1、Linux內核與發行版 Linux本身指的是一個操作系統的內核,而內核是無法直接使用的,只有既包括內核又包括一些有用的應用程式的一個集合體,即Linux的發行版才是我們所需要的; Linux的發行版:Debian(Debian運行起來極其穩定,適合用於伺服器)、Gentoo(包含數量眾多的軟體包 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...