首页 > 其他分享 >winform DataGridView的一些初始化

winform DataGridView的一些初始化

时间:2024-11-28 13:34:24浏览次数:9  
标签:初始化 false Windows System DataGridView Forms dataGridViewCellStyle1 dataGridView1

System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle1.BackColor = Color.LightGray;

dataGridView1.EnableHeadersVisualStyles = false;
dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
dataGridView1.DataSource = null; // 绑定数据
dataGridView1.AllowUserToResizeRows = true; // 禁止高度拉长,
dataGridView1.ReadOnly = true; // 只读
dataGridView1.RowHeadersVisible = false; // 禁止显示首列(即行头)
dataGridView1.AllowUserToAddRows = false; // 取消最后一行
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect; // 整行选择
dataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight; // 背景色
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;

dataGridView1.DataSource = null;

标签:初始化,false,Windows,System,DataGridView,Forms,dataGridViewCellStyle1,dataGridView1
From: https://www.cnblogs.com/jxjy4210/p/18574096

相关文章

  • DevExpress WinForms v24.2新功能预览 - 报表查看器和设计器全新升级
    DevExpressWinForms 拥有180+组件和UI库,能为WindowsForms平台创建具有影响力的业务解决方案。DevExpressWinForms能完美构建流畅、美观且易于使用的应用程序,无论是Office风格的界面,还是分析处理大批量的业务数据,它都能轻松胜任!获取DevExpressWinFormsv24.1正式版下载DevEx......
  • C++ 类和对象(初始化列表)
    目录一、前言二、正文1.初始化列表1.1初始化的格式1.2初始化列表的使用1.2.1引用成员变量初始化1.2.2const成员变量1.2.3没有默认构造函数的成员变量必须在初始化列表初始化2.成员变量声明处给缺省值一、前言前面我们已经用所学知识运算符重载写了一个日期计算器......
  • Day41--什么时候需要初始化对象
    Day41--什么时候需要初始化对象需要初始化对象的情况使用对象的成员变量或方法时当你需要访问对象的成员变量或者调用对象的方法时,必须先初始化对象。例如:classMyClass{intvalue;voidprintValue(){System.out.println("Valueis:"+value);......
  • WinForm调用StiReport报表控件,实现打印模板设计、保存、预览、打印
            usingStimulsoft.Report;usingStimulsoft.Report.Design;usingStimulsoft.Report.Dictionary;usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;......
  • Python 类初始化方法中初始化日志后,导致日志被重复打印
    Python类初始化方法中初始化日志后,导致日志被重复打印这个问题通常是由于添加处理器到同一个日志记录器上或使用了全局的日志记录器,从而导致重复的日志记录。以下是一些常见原因以及解决方法:问题原因日志处理器未被正确检查或清理:每次实例化类时,如果给日志记录器添加了新......
  • DevExpress WinForms中文教程:Data Grid - 使用服务器模式的大数据源和即时反馈?
    本教程首先描述了标准数据绑定模式在处理非常大的数据源时的缺点,用户可以学习如何使用服务器模式数据绑定来解决初始数据加载和数据操作性能问题。最后将演示即时反馈数据绑定模式,该模式确保应用程序的UI不会因在后台线程中执行与数据相关的操作而冻结。P.S:DevExpressWinForms拥......
  • 【C++语法】构造函数初始化列表
    初始化列表相较于在构造函数体中赋值,有以下几个优势:1.避免多次构造对于某些类型的成员变量(如const或引用类型),它们必须在初始化列表中进行初始化,不能在构造函数体中赋值。例如:classExample{  private:    constinta;//常量成员    int&ref;......
  • WinForm 直接运行 Admin.NET
    前言以客户端WinForm桌面程序模式直接运行Admin.NET,免去手动配置Web服务的繁琐步骤,方便给别人演示,可以当做单机软件使用了。新建winform项目添加包Furion.Pure与Microsoft.Web.WebView2引用项目:Admin.NET.Web.Core从Admin.NET.Web.Entry项目复制appsettings.json......
  • 写出几个初始化CSS的样式,并解释说明为什么要这样写
    以下是一些初始化CSS样式,并解释了为什么这样写:/*重置内外边距*/*{margin:0;padding:0;}/*继承box-sizing*/*,*::before,*::after{box-sizing:inherit;}html{box-sizing:border-box;/*使用border-box模型*/font-size:62.5%;/*设置......
  • WinForm 直接运行 Admin.NET
    前言以客户端WinForm桌面程序模式直接运行Admin.NET,免去手动配置Web服务的繁琐步骤,方便给别人演示,可以当做单机软件使用了。新建winform项目添加包Furion.Pure与Microsoft.Web.WebView2引用项目:Admin.NET.Web.Core从Admin.NET.Web.Entry项目复制appsettings.json与Singl......