本文整理汇总了C#中ColumnActionEventArgs类的典型用法代码示例。如果您正苦于以下问题:C# ColumnActionEventArgs类的具体用法?C# ColumnActionEventArgs怎么用?C# ColumnActionEventArgs使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ColumnActionEventArgs类属于命名空间,在下文中一共展示了ColumnActionEventArgs类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: grdThongTinChuaThanhToan_CellUpdated
/// <summary>
/// hàm thực hiện việc format thông tin số tiền cần nợp
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdThongTinChuaThanhToan_CellUpdated(object sender, ColumnActionEventArgs e)
{
TinhToanSoTienPhaithu();
e.Column.InputMask = "{0:#,#.##}";
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:10,代码来源:frm_THANHTOAN_NGOAITRU_TRONVIEN.cs
示例2: grdAssignDetail_CellValueChanged
private void grdAssignDetail_CellValueChanged(object sender, ColumnActionEventArgs e)
{
ModifycommandAssignDetail();
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:4,代码来源:frm_KCB_DSACH_BNHAN.cs
示例3: grdAssignDetail_CellUpdated
/// <summary>
/// hàm thực hiện việc update thông tin của cell update
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdAssignDetail_CellUpdated(object sender, ColumnActionEventArgs e)
{
}
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:8,代码来源:frm_TonghopRavien.cs
示例4: grdThongTinDaThanhToan_CellUpdated
/// <summary>
/// HÀM THỰC HIỆN VIỆC THAY ĐỔI THÔNG TIN PHIẾU CẬN LÂM SÀNG
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdThongTinDaThanhToan_CellUpdated(object sender, ColumnActionEventArgs e)
{
if (e.Column.Key == KcbThanhtoanChitiet.Columns.TrangthaiHuy)
{
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:11,代码来源:frm_THANHTOAN_NOITRU.cs
示例5: grdThongTinDaThanhToan_ColumnHeaderClick
private void grdThongTinDaThanhToan_ColumnHeaderClick(object sender, ColumnActionEventArgs e)
{
ModifyCommand();
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:4,代码来源:frm_THANHTOAN_NOITRU.cs
示例6: grdPhieuChi_ColumnButtonClick
private void grdPhieuChi_ColumnButtonClick(object sender, ColumnActionEventArgs e)
{
try
{
if (e.Column.Key == "cmdPHIEUCHI")
{
CallPhieuChi();
}
if (e.Column.Key == "cmdHuyPhieuChi")
{
CallHuyPhieuChi();
}
}
catch (Exception exception)
{
//throw;
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:18,代码来源:frm_THANHTOAN_NOITRU.cs
示例7: grdThongTinChuaThanhToan_CellValueChanged
/// <summary>
/// hàm thực hiện viecj check trạng thái nút thanh toán
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdThongTinChuaThanhToan_CellValueChanged(object sender, ColumnActionEventArgs e)
{
try
{
// TinhToanSoTienPhaithu();
//ModifyCommand();
}
catch (Exception exception)
{
if (globalVariables.IsAdmin)
{
Utility.ShowMsg(exception.ToString());
}
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:20,代码来源:frm_THANHTOAN_NOITRU.cs
示例8: grdTestInfoModification_CellUpdated
private void grdTestInfoModification_CellUpdated(object sender, ColumnActionEventArgs e)
{
if (grdTestInfoModification.CurrentColumn.Key == "Barcode")
{
bool bSuccess = false;
string vBarcode = Utility.sDbnull(grdTestInfoModification.GetValue("Barcode"));
try
{
//Tim Patient_ID moi cho test_ID dang dc chon
if (vBarcode.Length <= 4) vBarcode = DateTime.Now.ToString("yyMMdd") + vBarcode.PadLeft(4, '0');
DataTable dtPatientModified =
TTestInfo.CreateQuery().WHERE(TTestInfo.Columns.Barcode, vBarcode).AND(
TTestInfo.Columns.PatientId, Comparison.GreaterThan, 0).ExecuteDataSet().Tables[0];
//Neu ko tim thay
if (
(from drCount in dtPatientModified.AsEnumerable() select drCount["Patient_ID"]).Distinct().Count
() != 1)
{
Utility.ShowMsg(
string.Format(
"Không tìm thấy bệnh nhân có barcode {0} hoặc tìm thấy nhiều hơn 1 bệnh nhân. Đề nghị thực hiện lại.",
vBarcode));
grdTestInfoModification.CurrentRow.Cells["Barcode"].Value = CurrentRowBarcode;
return;
}
//Neu tim thay
int newPatientID = Utility.Int32Dbnull(dtPatientModified.Rows[0]["Patient_ID"]);
int oldPatientID = Utility.Int32Dbnull(grdTestInfoModification.GetValue("Patient_ID"));
int oldTestID = Utility.Int32Dbnull(grdTestInfoModification.GetValue("Test_ID"));
int vTestType_ID = Utility.Int32Dbnull(grdTestInfoModification.GetValue("TestType_ID"));
LPatientInfo obj = LPatientInfo.FetchByID(newPatientID);
if (obj == null)
{
Utility.ShowMsg("Không tồn tại bệnh nhân !");
return;
}
if (
!Utility.AcceptQuestion(
string.Format("Thực hiện chuyển sang bệnh nhận {0} có barcode {1} ?", obj.PatientName,
vBarcode), "Thông báo", true))
return;
DataRow dr = Utility.GetDataRow(dtPatientModified, "TestType_ID", vTestType_ID);
DataRow drPatient = Utility.GetDataRow(dtResultModification,
new[] {"Patient_ID", "Test_ID"},
new object[] {oldPatientID, oldTestID});
if (drPatient == null)
{
Utility.ShowMsg("Không tìm thấy thông tin trên lưới");
return;
}
int newTest_ID = oldTestID;
if (oldTestID > 0)
{
if (dr == null)
{
newTest_ID = oldTestID;
new Update(TTestInfo.Schema.Name). //Set(TTestInfo.Columns.Barcode).EqualTo(vBarcode).
Set(TTestInfo.Columns.PatientId).EqualTo(newPatientID).
Set(TTestInfo.Columns.Barcode).EqualTo(vBarcode).
Where(TTestInfo.Columns.TestId).IsEqualTo(oldTestID).
Execute();
//Utility.ShowMsg(string.Format("Tìm thấy bệnh nhân {0}, chưa đăng ký {1}. Đề nghị thực hiện lại.",
// obj.PatientName, grdResultModification.GetValue("TestType_Name")));
//return;
}
else if (oldPatientID > 0)
{
if (
!Utility.AcceptQuestion(
string.Format(
"Giữ đăng ký của bệnh nhân cũ và chỉ thực hiện chuyển kết quả sang bệnh nhận {0} có barcode {1} ?",
obj.PatientName, dr["Barcode"]), "Thông báo", true))
{
//Update PatientID cho T_Test_Info
new Update(TTestInfo.Schema.Name). //Set(TTestInfo.Columns.Barcode).EqualTo(vBarcode).
Set(TTestInfo.Columns.PatientId).EqualTo(newPatientID).
Set(TTestInfo.Columns.Barcode).EqualTo(vBarcode).
Where(TTestInfo.Columns.TestId).IsEqualTo(oldTestID).
Execute();
}
else newTest_ID = Utility.Int32Dbnull(dr["Test_ID"]);
}
else newTest_ID = Utility.Int32Dbnull(dr["Test_ID"]);
}
else
{
//Utility.ShowMsg(string.Format("Tìm thấy bệnh nhân {0}, chưa đăng ký {1}. Đề nghị thực hiện lại.",
// obj.PatientName, grdResultModification.GetValue("TestType_Name")));
//return;
TTestInfo objTestInfo = new TTestInfo();
objTestInfo.DeviceId = -1;
objTestInfo.PatientId = newPatientID;
objTestInfo.Barcode = vBarcode;
//.........这里部分代码省略.........
开发者ID:khaha2210,项目名称:CodeNewTeam,代码行数:101,代码来源:frm_DangKyTraCuu.cs
示例9: grdTestInfo_CellValueChanged
private void grdTestInfo_CellValueChanged(object sender, ColumnActionEventArgs e)
{
}
开发者ID:khaha2210,项目名称:CodeNewTeam,代码行数:3,代码来源:frm_DangKyTraCuu.cs
示例10: grdPhieuNhapChiTiet_CellUpdated
private void grdPhieuNhapChiTiet_CellUpdated(object sender, ColumnActionEventArgs e)
{
if (e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.SoLuong.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.GiaNhap.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.GiaBan.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.ChietKhau.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.GiaPhuthuDungtuyen.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.GiaPhuthuTraituyen.ToUpper()
|| e.Column.Key.ToUpper() == TPhieuNhapxuatthuocChitiet.Columns.ThangDu.ToUpper()
)
{
e.Column.InputMask = "{0:#,#.##}";
}
// UpdateWhenChanged();
}
开发者ID:vmshis2020,项目名称:VMSPharmacy,代码行数:16,代码来源:frm_Themmoi_Phieunhapkho.cs
示例11: grdResultDetail_CellUpdated
private void grdResultDetail_CellUpdated(object sender, ColumnActionEventArgs e)
{
Insert_Update_Result();
}
开发者ID:khaha2210,项目名称:CodeNewTeam,代码行数:4,代码来源:frm_DangKyTraCuu.cs
示例12: grdQhe_CellUpdated
void grdQhe_CellUpdated(object sender, ColumnActionEventArgs e)
{
try
{
if (grdQhe.CurrentColumn != null) e.Column.InputMask = "{0:#,#.##}";
}
catch
{
}
}
开发者ID:vmshis2015,项目名称:VMSPharmacy,代码行数:10,代码来源:frm_qhe_doituong_thuoc_coban.cs
示例13: grdReport_CellUpdated
private void grdReport_CellUpdated(object sender, ColumnActionEventArgs e)
{
grdReport.UpdateData();
}
开发者ID:khaha2210,项目名称:CodeNewTeam,代码行数:4,代码来源:frm_DONGANH.cs
示例14: grdThongTinChuaThanhToan_ColumnHeaderClick
/// <summary>
/// hàm thực hiện viecj trạng thái của grid header
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdThongTinChuaThanhToan_ColumnHeaderClick(object sender, ColumnActionEventArgs e)
{
try
{
grdThongTinChuaThanhToan.RowCheckStateChanged -= grdThongTinChuaThanhToan_RowCheckStateChanged;
TinhToanSoTienPhaithu();
//ModifyCommand();
}
catch (Exception exception)
{
if (globalVariables.IsAdmin)
{
Utility.ShowMsg(exception.ToString());
}
}
finally
{
grdThongTinChuaThanhToan.RowCheckStateChanged += grdThongTinChuaThanhToan_RowCheckStateChanged;
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:25,代码来源:frm_THANHTOAN_NGOAITRU_TRONVIEN.cs
示例15: grdPayment_ColumnButtonClick
//private void chkChuaThanhToan_CheckedChanged(object sender, EventArgs e)
//{
// try
// {
// string _rowFilter = "1=1";
// if (chkChuaThanhToan.Checked)
// {
// _rowFilter = string.Format("{0}={1}", "Payment_status", 0);
// }
// m_dtChiPhiThanhtoan.DefaultView.RowFilter = _rowFilter;
// m_dtChiPhiThanhtoan.AcceptChanges();
// }catch(Exception exception)
// {
// }
//}
//private void chkDaThanhToan_CheckedChanged(object sender, EventArgs e)
//{
// try
// {
// string _rowFilter = "1=1";
// if (chkDaThanhToan.Checked)
// {
// _rowFilter = string.Format("{0}={1}", "Payment_status", 1);
// }
// m_dtChiPhiThanhtoan.DefaultView.RowFilter = _rowFilter;
// m_dtChiPhiThanhtoan.AcceptChanges();
// }
// catch (Exception exception)
// {
// }
//}
/// <summary>
/// /hàm thực hiện việc lọc thông tin chọn thông tin của chưa thanh toana
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
/// <summary>
/// hàm thực hiện việc khởi tọa sự kiện của lưới thanh toán
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdPayment_ColumnButtonClick(object sender, ColumnActionEventArgs e)
{
if (e.Column.Key == "cmdPHIEU_THU")
{
CallPhieuThu();
}
if (e.Column.Key == "cmdHUY_PHIEUTHU")
{
HuyThanhtoan();
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:52,代码来源:frm_THANHTOAN_NOITRU.cs
示例16: grdTestTypeRegList_CellValueChanged
private void grdTestTypeRegList_CellValueChanged(object sender, ColumnActionEventArgs e)
{
try
{
if (e.Column.Key == "Status")
{
int vStatus = Utility.Int32Dbnull(grdTestTypeRegList.GetValue("Status"));
new Update(TRegList.Schema.Name).Set(TRegList.Columns.Status).
EqualTo(vStatus).Where(TRegList.Columns.TestRegDetailId).
IsEqualTo(Utility.Int32Dbnull(grdTestTypeRegList.GetValue("TestRegDetail_ID"))).
Execute();
grdTestTypeRegList.UpdateData();
dtTestTypeandTRegList.AcceptChanges();
}
}
catch (Exception ex)
{
Utility.ShowMsg(ex.Message);
}
}
开发者ID:khaha2210,项目名称:CodeNewTeam,代码行数:20,代码来源:frm_DangKyTraCuu.cs
示例17: grdPhieuChi_CellUpdated
/// <summary>
/// hàm thực hiện việc thay đổi ngày thanh toán
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdPhieuChi_CellUpdated(object sender, ColumnActionEventArgs e)
{
if (e.Column.Key == KcbThanhtoan.Columns.NgayThanhtoan)
{
//UpdatePaymentDate();
UpdatePhieuChiPaymentDate();
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:13,代码来源:frm_THANHTOAN_NOITRU.cs
示例18: grdDiease_CellUpdated
private void grdDiease_CellUpdated(object sender, ColumnActionEventArgs e)
{
try
{
int record = new Update(DmucBenh.Schema)
.Set(DmucBenh.Columns.TenBenh).EqualTo(Utility.sDbnull(grdDiease.CurrentRow.Cells[DmucBenh.Columns.TenBenh].Value, ""))
.Set(DmucBenh.Columns.MaBenh).EqualTo(Utility.sDbnull(grdDiease.CurrentRow.Cells[DmucBenh.Columns.MaBenh].Value, ""))
.Set(DmucBenh.Columns.MotaThem).EqualTo(Utility.sDbnull(grdDiease.CurrentRow.Cells[DmucBenh.Columns.MotaThem].Value, ""))
.Where(DmucBenh.Columns.IdBenh).IsEqualTo(Utility.Int32Dbnull(grdDiease.CurrentRow.Cells[DmucBenh.Columns.IdBenh].Value, -1)).Execute();
if (record > 0)
{
grdDiease.UpdateData();
grdDiease.Refresh();
m_dtDiease.AcceptChanges();
Utility.ShowMsg("Bạn thực hiện cập nhập thông tin thành công");
}
else
{
Utility.ShowMsg("Lỗi trong quá trình cập nhập dữ liệu");
return;
}
}
catch (Exception exception)
{
}
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:28,代码来源:frm_dmuc_benh.cs
示例19: grdThongTinChuaThanhToan_CellUpdated
/// <summary>
/// hàm thực hiện việc format thông tin số tiền cần nợp
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void grdThongTinChuaThanhToan_CellUpdated(object sender, ColumnActionEventArgs e)
{
//Thay hàm TinhToanSoTienPhaithu= hàm SetSumTotalProperties để tính lại tiền BHYT chi trả
SetSumTotalProperties();
//TinhToanSoTienPhaithu();
e.Column.InputMask = "{0:#,#.##}";
}
开发者ID:vmshis2020,项目名称:VMSHISServer,代码行数:12,代码来源:frm_THANHTOAN_NOITRU.cs
示例20: grdList_CellUpdated
void grdList_CellUpdated(object sender, ColumnActionEventArgs e)
{
try
{
int ServiceDetail_ID = Utility.Int32Dbnull(grdList.GetValue(DmucDichvucl.Columns.IdDichvu));
if (e.Column.Key == DmucDichvucl.Columns.SttHthi)
{
new Update(DmucDichvucl.Schema)
.Set(DmucDichvucl.Columns.SttHthi).EqualTo(
Utility.Int32Dbnull(grdList.GetValue(DmucDichvucl.Columns.SttHthi)))
.Set(DmucDichvucl.Columns.NgaySua).EqualTo(globalVariables.SysDate)
.Set(DmucDichvucl.Columns.NguoiSua).EqualTo(globalVariables.UserName)
.Where(DmucDichvucl.Columns.IdDichvu).IsEqualTo(
Utility.Int32Dbnull(grdList.GetValue(DmucDichvucl.Columns.IdDichvu))).Execute();
}
Utility.GotoNewRowJanus(grdList, DmucDichvucl.Columns.IdDichvu, Utility.sDbnull(ServiceDetail_ID));
}
catch
{ }
}
开发者ID:khaha2210,项目名称:CodeNewHis,代码行数:22,代码来源:frm_dmuc_dichvucls.cs
注:本文中的ColumnActionEventArgs类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论