当前位置: 首页>>代码示例>>C#>>正文


C# DataGridViewCellStyle.ToString方法代码示例

本文整理汇总了C#中System.Windows.Forms.DataGridViewCellStyle.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# DataGridViewCellStyle.ToString方法的具体用法?C# DataGridViewCellStyle.ToString怎么用?C# DataGridViewCellStyle.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.DataGridViewCellStyle的用法示例。


在下文中一共展示了DataGridViewCellStyle.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DgDr_KeyDown

        private void DgDr_KeyDown(object sender, KeyEventArgs e)
        {
            try
            {

                if (DgDr.CurrentRow != null)
                {
                    int GId = DgDr.CurrentRow.Cells["ColParticularDrGId"].EditedFormattedValue.ToString().IntParse();
                    int AId = DgDr.CurrentRow.Cells["ColParticularDrAId"].EditedFormattedValue.ToString().IntParse();

                    if (e.KeyData == Keys.Enter)
                    {
                        e.SuppressKeyPress = true;
                        e.Handled = true;

                        //if (AId != 0)
                        //{
                        //    clsGeneral.Accounting_Main.OpMonthlySummary(AId, dateTimePicker1.Value, this);
                        //}
                        //else
                        //{
                        //    clsGeneral.Accounting_Main.OpgroupSummary(GId, dateTimePicker1.Value, this);
                        //}
                    }
                    if (e.KeyData == Keys.Space)
                    {
                        e.SuppressKeyPress = true;
                        e.Handled = true;

                        DataGridViewCellStyle CompStyle1 = new DataGridViewCellStyle();
                        CompStyle1.ForeColor = Color.Red;
                        CompStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));

                        DataGridViewCellStyle CompStyle2 = new DataGridViewCellStyle();
                        CompStyle2.ForeColor = Color.Black;
                        CompStyle2.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));

                        if (DgDr.CurrentRow.DefaultCellStyle.ToString() == CompStyle1.ToString() || DgDr.CurrentRow.DefaultCellStyle.ToString() == CompStyle2.ToString())
                        {
                            int Index = DgDr.CurrentRow.Index;
                            for (int i = Index + 1; i < DgDr.Rows.Count; i++)
                            {
                                int GCId = DgDr.Rows[i].Cells["ColParticularDrGId"].EditedFormattedValue.ToString().IntParse();
                                if (GId == GCId)
                                {
                                    DgDr.Rows[i].Visible = !DgDr.Rows[i].Visible;
                                }
                            }
                            DgDr.Refresh();
                        }
                    }
                }
            }
            catch (Exception Erp)
            {
                clsGeneral.ShowErrMsg(Erp.Message);
            }
        }
开发者ID:ajinkyapradhan1410,项目名称:goenka,代码行数:58,代码来源:Frm_NewBalanceSheet.cs


注:本文中的System.Windows.Forms.DataGridViewCellStyle.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。