怎样让WinForms下DataGrid可以像ASP.NET下的DataGrid一样使用自定义的模板列

昨天被问到一个问题:怎么把WinForms里的DataGrid的绑定了数据库bit字段的列默认显示的CheckBox换成“男”和“女”,也就是说怎么样像ASP.NET的模板列那样可以自定义。(此处不考虑在SQL在用Case把数据结果转换了)
由于,基本没有搞过WinForms,所以这个问题弄了很久才搞掂,可能对于WinForms高手来说,这是一个很简单的问题。(我搜了一下网页,没有找到直接的解决方案,问了一些搞过WinForms的朋友,也没有直接的解决方案,所以把我的解决方案放在博客园首页,DUDU如觉不适合,请移除。)解决这个问题的副作用就是对WinForms的机制有了一点了解。

最终实现效果:


开始的思路还是ASP.NET的思路,企图用WinForms的DataGrid的事件来实现。试了ControlAdde,BindingComplated等事件,都没有用,有些能拿到绑定时的控件,却拿不到对应的数据。
后来有朋友启发用CurrencyManager来实现,试了半天,能拿到数据,又拿不到对应的绑定生成的控件了。
晕,后来还是控件开发的思想,既然可以用DataGridTextBoxColumnStyle和DataGridBoolColumnStyle分别生成TextBox和CheckBox,为什么不可以自定义一个DataGridColumnStyle来实现自定义呢?
结果还真是可行的:

None.gif//用Label显示"男"和"女",并且点击一次变成相反的
None.gif
    class DataGridCustomBoolColumnStyle : DataGridColumnStyle
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
private Label _customLabel = new Label();
InBlock.gif        
private bool _isEditing = false;
InBlock.gif        
public DataGridCustomBoolColumnStyle()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _customLabel.Visible 
= false;
InBlock.gif            _customLabel.Click 
+=new EventHandler(_customLabel_Click);
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override void Abort(int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _isEditing 
= false;
InBlock.gif            Invalidate();
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
void _customLabel_Click(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Label lbl 
= sender as Label;
InBlock.gif            
if (lbl.Text == "")
InBlock.gif                lbl.Text 
= "";
InBlock.gif            
else
InBlock.gif                lbl.Text 
= "";
InBlock.gif            
this._isEditing = true;
InBlock.gif            
base.ColumnStartedEditing(_customLabel);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override object GetColumnValueAtRow(CurrencyManager source, int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
object o = base.GetColumnValueAtRow(source, rowNum);
InBlock.gif            
bool value = true;
InBlock.gif            
if (Convert.IsDBNull(o))
InBlock.gif                value 
= true;
InBlock.gif            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value 
= (bool)o;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
return value;
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override void SetDataGridInColumn(DataGrid value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
base.SetDataGridInColumn(value);
InBlock.gif            
if (_customLabel.Parent != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _customLabel.Parent.Controls.Remove(_customLabel);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
if (value != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value.Controls.Add(_customLabel);
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override bool Commit(CurrencyManager dataSource, int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _customLabel.Bounds 
= Rectangle.Empty;
InBlock.gif            _customLabel.Visible 
= false;
InBlock.gif
InBlock.gif            
if (!_isEditing)
InBlock.gif                
return true;
InBlock.gif
InBlock.gif            _isEditing 
= false;
InBlock.gif
InBlock.gif            
try
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
bool value = (_customLabel.Text == "");
InBlock.gif                SetColumnValueAtRow(dataSource, rowNum, value);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
catch (Exception)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                Abort(rowNum);
InBlock.gif                
return false;
ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            Invalidate();
InBlock.gif            
return true;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override void Edit(CurrencyManager source, int rowNum, System.Drawing.Rectangle bounds, bool readOnly, string displayText, bool cellIsVisible)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
bool value = (bool)GetColumnValueAtRow(source, rowNum);
InBlock.gif            
if (cellIsVisible)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _customLabel.Bounds 
= new Rectangle(bounds.X + 2, bounds.Y + 2, bounds.Width - 4, bounds.Height - 4);
InBlock.gif                _customLabel.Visible 
= true;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _customLabel.Visible 
= false;
ExpandedSubBlockEnd.gif            }

InBlock.gif            _customLabel.Text 
= value ? "" : "";
InBlock.gif
InBlock.gif            
if (_customLabel.Visible)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                DataGridTableStyle.DataGrid.Invalidate(bounds);
ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            _customLabel.BackColor 
= Color.Red;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override int GetMinimumHeight()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return _customLabel.PreferredHeight + 4;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override int GetPreferredHeight(System.Drawing.Graphics g, object value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return _customLabel.PreferredHeight + 4;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override System.Drawing.Size GetPreferredSize(System.Drawing.Graphics g, object value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return new Size(40, _customLabel.PreferredHeight + 4);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
InBlock.gif        
protected override void Paint(System.Drawing.Graphics g, System.Drawing.Rectangle bounds, CurrencyManager source, int rowNum, System.Drawing.Brush backBrush, System.Drawing.Brush foreBrush, bool alignToRight)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
bool value = (bool)GetColumnValueAtRow(source, rowNum);
InBlock.gif            g.FillRectangle(backBrush, bounds);
InBlock.gif            bounds.Offset(
02);
InBlock.gif            bounds.Height 
-= 2;
InBlock.gif            g.DrawString(value 
? "" : "", DataGridTableStyle.DataGrid.Font, foreBrush, bounds);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override void Paint(Graphics g,Rectangle bounds,CurrencyManager source,int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Paint(g, bounds, source, rowNum, 
false);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override void Paint(Graphics g, Rectangle bounds, CurrencyManager source,int rowNum,bool alignToRight)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Brush coreBrush 
= _isEditing ? Brushes.Red : Brushes.White;
InBlock.gif            Brush backBrush 
= _isEditing ? Brushes.Blue : Brushes.Black;
InBlock.gif            Paint(
InBlock.gif                g, bounds,
InBlock.gif                source,
InBlock.gif                rowNum,
InBlock.gif                coreBrush,
InBlock.gif                backBrush,
InBlock.gif                alignToRight);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
ExpandedBlockEnd.gif    }

 

None.gif//使用方法
None.gif
            DataGridTableStyle dgts = new DataGridTableStyle();
None.gif            dgts.MappingName 
= this.dataSet11.Employees.TableName;
None.gif            
this.dataGrid1.TableStyles.Add(dgts);
None.gif
None.gif            GridColumnStylesCollection gcsc 
= dataGrid1.TableStyles[0].GridColumnStyles;
None.gif
None.gif            DataGridBoolColumn dgbc 
= gcsc[gcsc.Count - 1as DataGridBoolColumn;
None.gif
None.gif            DataGridCustomBoolColumnStyle dgcbc 
= new DataGridCustomBoolColumnStyle();
None.gif            dgcbc.MappingName 
= dgbc.MappingName;
None.gif            gcsc.Remove(dgbc);
None.gif            gcsc.Add(dgcbc);
None.gif            
this.employeesTableAdapter.Fill(this.dataSet11.Employees);
None.gif            
this.dataGrid1.DataSource = this.dataSet11.Employees;

这个实现很简单,数据与显示之间的映射是固定的,既然简单的能实现,我们再来实现个复杂的,用ComboBox来表示一些固定值的选择,比如enum和bool,因为数据库中的数据并没有enum,所以,这个DataGridComboBoxColumnStyle提供两个委托,可以数据到ComboBox项和ComboBox项到数据之间做一个处理

None.gif//可以灵活适应各种情况的ComboBox列样式
None.gif
    public delegate string FormatValueToString(object value);
None.gif    
public delegate object ParseStringToValue(string value);
None.gif    
class DataGridComboBoxColumnStyle:DataGridColumnStyle
ExpandedBlockStart.gifContractedBlock.gif    
dot.gif{
InBlock.gif        
public FormatValueToString FormartDelegate;
InBlock.gif        
public ParseStringToValue ParseDelegate;
InBlock.gif        
private bool _isEditing = false;
InBlock.gif        
private ComboBox _combo = new ComboBox();
InBlock.gif        
public ComboBox InnerComboBox
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
get
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
return _combo;
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif        
public DataGridComboBoxColumnStyle()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _combo.SelectedIndexChanged 
+= new EventHandler(_combo_SelectedIndexChanged);
InBlock.gif            _combo.Visible 
= false;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
void _combo_SelectedIndexChanged(object sender, EventArgs e)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
this._isEditing = true;
InBlock.gif            
base.ColumnStartedEditing(_combo);
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override void Abort(int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _isEditing 
= false;
InBlock.gif            Invalidate();
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
InBlock.gif        
protected override void SetDataGridInColumn(DataGrid value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
base.SetDataGridInColumn(value);
InBlock.gif            
if (_combo.Parent != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _combo.Parent.Controls.Remove(_combo);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
if (value != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value.Controls.Add(_combo);
ExpandedSubBlockEnd.gif            }

ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif       
InBlock.gif
InBlock.gif        
protected override bool Commit(CurrencyManager dataSource, int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            _combo.Bounds 
= Rectangle.Empty;
InBlock.gif            _combo.Visible 
= false;
InBlock.gif
InBlock.gif            
if (!_isEditing)
InBlock.gif                
return true;
InBlock.gif            _isEditing 
= false;
InBlock.gif            
InBlock.gif            
try
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
string value = _combo.SelectedText;
InBlock.gif                SetColumnValueAtRow(dataSource, rowNum, value);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
catch (Exception)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                Abort(rowNum);
InBlock.gif                
return false;
ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            Invalidate();
InBlock.gif            
return true;
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override object GetColumnValueAtRow(CurrencyManager source, int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
object value = base.GetColumnValueAtRow(source, rowNum);
InBlock.gif            
if (Convert.IsDBNull(value))
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value 
= this.NullText;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
if (FormartDelegate != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value 
= FormartDelegate(value);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
return value;
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override void SetColumnValueAtRow(CurrencyManager source, int rowNum, object value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
if(ParseDelegate != null)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                value 
= ParseDelegate((string)value);
ExpandedSubBlockEnd.gif            }

InBlock.gif            
base.SetColumnValueAtRow(source, rowNum, value);
ExpandedSubBlockEnd.gif        }

InBlock.gif        
protected override void Edit(CurrencyManager source, int rowNum, System.Drawing.Rectangle bounds, bool readOnly, string displayText, bool cellIsVisible)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
string value = (string)GetColumnValueAtRow(source, rowNum);
InBlock.gif            
if (cellIsVisible)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _combo.Bounds 
= new Rectangle(bounds.X + 2, bounds.Y + 2, bounds.Width - 4, bounds.Height - 4);
InBlock.gif                _combo.Visible 
= true;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
else
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                _combo.Visible 
= false;
ExpandedSubBlockEnd.gif            }

InBlock.gif            
for (int i = 0; i < _combo.Items.Count; i++)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                
if (value == (string)_combo.Items[i])
ExpandedSubBlockStart.gifContractedSubBlock.gif                
dot.gif{
InBlock.gif                    _combo.SelectedIndex 
= i;
InBlock.gif                    
break;
ExpandedSubBlockEnd.gif                }

ExpandedSubBlockEnd.gif            }

InBlock.gif
InBlock.gif            
if (_combo.Visible)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                DataGridTableStyle.DataGrid.Invalidate(bounds);
ExpandedSubBlockEnd.gif            }

InBlock.gif
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override int GetMinimumHeight()
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return _combo.PreferredHeight + 4;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override int GetPreferredHeight(System.Drawing.Graphics g, object value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return _combo.PreferredHeight + 4;
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override System.Drawing.Size GetPreferredSize(System.Drawing.Graphics g, object value)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
return new Size(100, _combo.PreferredHeight + 4);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
InBlock.gif        
protected override void Paint(System.Drawing.Graphics g, System.Drawing.Rectangle bounds, CurrencyManager source, int rowNum, System.Drawing.Brush backBrush, System.Drawing.Brush foreBrush, bool alignToRight)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            
string value = (string)GetColumnValueAtRow(source, rowNum);
InBlock.gif            g.FillRectangle(backBrush, bounds);
InBlock.gif            bounds.Offset(
02);
InBlock.gif            bounds.Height 
-= 2;
InBlock.gif            g.DrawString(value, DataGridTableStyle.DataGrid.Font, foreBrush, bounds);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override void Paint(Graphics g,Rectangle bounds,CurrencyManager source,int rowNum)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Paint(g, bounds, source, rowNum, 
false);
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif        
protected override void Paint(Graphics g, Rectangle bounds, CurrencyManager source,int rowNum,bool alignToRight)
ExpandedSubBlockStart.gifContractedSubBlock.gif        
dot.gif{
InBlock.gif            Brush coreBrush 
= _isEditing ? Brushes.Red : Brushes.White;
InBlock.gif            Brush backBrush 
= _isEditing ? Brushes.Blue : Brushes.Black;
InBlock.gif            Paint(
InBlock.gif                g, bounds,
InBlock.gif                source,
InBlock.gif                rowNum,
InBlock.gif                coreBrush,
InBlock.gif                backBrush,
InBlock.gif                alignToRight);
InBlock.gif
InBlock.gif            
ExpandedSubBlockEnd.gif        }

InBlock.gif
InBlock.gif
ExpandedBlockEnd.gif    }

 

None.gif//使用方法
None.gif
            DataGridTableStyle dgts = new DataGridTableStyle();
None.gif            dgts.MappingName 
= this.dataSet11.Employees.TableName;
None.gif            
this.dataGrid1.TableStyles.Add(dgts);
None.gif
None.gif            GridColumnStylesCollection gcsc 
= dataGrid1.TableStyles[0].GridColumnStyles;
None.gif
None.gif            DataGridBoolColumn dgbc 
= gcsc[gcsc.Count - 1as DataGridBoolColumn;
None.gif
None.gif
None.gif            DataGridComboBoxColumnStyle dgcbc 
= new DataGridComboBoxColumnStyle();
None.gif            dgcbc.MappingName 
= dgbc.MappingName;
None.gif            
//这里定义ComboBOx的样式和项,因为整个ComboBox都公开了,所以随你怎么设置都行
None.gif
            dgcbc.InnerComboBox.Items.Add("");
None.gif            dgcbc.InnerComboBox.Items.Add(
"");
None.gif            dgcbc.InnerComboBox.DropDownStyle 
= ComboBoxStyle.DropDownList;
None.gif            
//这里定义数据和ComboBOx项之间如何转换
None.gif
            dgcbc.ParseDelegate = new ParseStringToValue(ParseStringToBool);
None.gif            dgcbc.FormartDelegate 
= new FormatValueToString(FormatBoolToString);
None.gif
None.gif            gcsc.Remove(dgbc);
None.gif            gcsc.Add(dgcbc);
None.gif            
this.employeesTableAdapter.Fill(this.dataSet11.Employees);
None.gif            
this.dataGrid1.DataSource = this.dataSet11.Employees;


熟悉WinForms的设计思路之后,我们又可以像用ASP.NET的DataGird一样用DataGrid了。
WinForms我是新手,请多指教。。。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/300387.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

比较两个字符串的相似度算法

平时的编码中&#xff0c;我们经常需要判断两个文本的相似性&#xff0c;不管是用来做文本纠错或者去重等等&#xff0c;那么我们应该以什么维度来判断相似性呢&#xff1f;这些算法又怎么实现呢&#xff1f;这篇文章对常见的计算方式做一个记录。Levenshtein 距离&#xff0c;…

java 面相,java学习17-面相对象(多态)

多态——父类或者接口的引用指向自己的子类对象。优点&#xff1a;提高代码的扩展性弊端&#xff1a;前期建立父类的引用&#xff0c;虽然可以接受后期所有该类的子类的对象。但是只能使用父类中的功能&#xff0c;不能使用子类特有的功能&#xff0c;因为前期的程序无法知道后…

智能优化算法应用:基于原子轨道搜索算法3D无线传感器网络(WSN)覆盖优化 - 附代码

智能优化算法应用&#xff1a;基于原子轨道搜索算法3D无线传感器网络(WSN)覆盖优化 - 附代码 文章目录 智能优化算法应用&#xff1a;基于原子轨道搜索算法3D无线传感器网络(WSN)覆盖优化 - 附代码1.无线传感网络节点模型2.覆盖数学模型及分析3.原子轨道搜索算法4.实验参数设定…

dotnet中的counters说明(三)

本篇分别说明一下System.Net下的Http计数器&#xff0c;NameResolution计数器&#xff0c;Security计数器和Sockets计数器。同时&#xff0c;下面指标各项()里的项目是--counters 参数[]里的项&#xff0c;用逗号分隔多项指标。System.Net.Http计数器以下计数器由 HTTP 堆栈发布…

c#开发-基础知识及有用技巧(一)

1、时间长度的计算 TimeSpan类。例如&#xff1a;TimeSpan span dateTime1 - dateTime2 方便啊2、从类&#xff08;Class)返回一个System.Type类型&#xff0c;用typeof关键字3、从一个对象实例(Object)返回一个System.Type类型&#xff0c;用GetType方法4、判断是否处于设计…

redis下载+php,php+redis实现消息队列

入队列$redis new Redis();$redis->connect(127.0.0.1,6379);$password 123456;$redis->auth($password);$arr array(h,e,l,l,o,w,o,r,l,d);foreach($arr as $k>$v){$redis->rpush("mylist",$v);}出队列$redis new Redis();$redis->connect(127.0…

为DataList和GridView内容项添加序号

DataList就在需要的地方加入这么一个Label就可以了,主要的地方就是那个Container.ItemIndex1,1是因为DataList的编号是从0开始的<asp:Label ID"lblQNum"runat"server"Text<%# Container.ItemIndex1 %>Font-Bold"True"></asp:Labe…

天呐!你知道MSBuild都干了些什么

一个典型的.NET5.0项目文件是这样的&#xff0c;看着非常简洁&#xff1a;<Project Sdk"Microsoft.NET.Sdk.Web"><PropertyGroup><TargetFramework>net5.0</TargetFramework></PropertyGroup><ItemGroup><PackageReference I…

笑到打鸣~ | 今日趣图

全世界只有3.14 % 的人关注了青少年数学之旅视频来源网络

JAVA拾遗1

JAVA拾遗1 1 static修饰符 类的成员变量分为静态变量和实例变量, 被stacit修饰的变量,叫静态变量,没被修饰的就是实例变量了. 静态变量的特点,在于其在内存中只有一个COPY,在使用时不需要实例化,直接用类名来调用就可以了. 同样,比如 public static int add()…

Tech·Ed 2006中国 实况报道

比较懒&#xff0c;哈哈&#xff0c;将就把园子里的几位兄弟的报道转载过来了&#xff0c;俱乐部的兄弟们先欣赏到&#xff0c;有时间我在写点报道了 :)全球首发----TechEd 2006中国 实况报道。全程跟踪。(一)全球首发----TechEd 2006中国 实况报道。全程跟踪。(二)全球首发---…

为什么理工类专业成绩好的人,英语总是很差?

▲ 点击查看在知乎上曾经有一个话题&#xff1a;为什么会有数学很好但英语很差的人&#xff1f;这个话题还被浏览了四十多万次。说起这个话题&#xff0c;评论中很多人也纷纷表示感同身受。在上学的时候&#xff0c;要么英语成绩好到飞起&#xff0c;要么数学成绩牛逼到不行。…

php大数组查找算法,PHP简单的数组查找算法分享

PHP中对于数组的查找可以用顺序查找或二分法查找。其中顺序查找比较简单&#xff0c;就是逐个比较查找。但缺点也较明显&#xff0c;如果查找的元素恰巧在最后一个&#xff0c;循环的次数过多。1.顺序查找算法描述在数组中逐个查找&#xff0c;确认是否有某个元素&#xff0c;存…

.Net Core with 微服务 - Polly 服务降级熔断

在我们实施微服务之后&#xff0c;服务间的调用变的异常频繁。多个服务之间可能是互相依赖的关系。某个服务出现故障或者是服务间的网络出现故障都会造成服务调用的失败&#xff0c;进而影响到某个业务服务处理失败。某一个服务调用失败轻则造成当前相关业务无法处理&#xff1…

IfElseActivity

IfElseActivity 1.IfElseActivity有两个IfElseBranch子控件&#xff0c;分别作为IfElse的两个分支容器,系统自动添加&#xff0c; 2.其中左边(为真件条)的IfElseBranch容器要设Condition 3.IfElse左边(为真件条)的IfElseBranch容器的Condition有两个条件模式:Code Condition,De…

vim cheat-sheet

Vim 命令小抄original card by Laurent Gregoires redesign by brohan基本移动 插入模式 撤消&#xff0c;重做 h l j k左/右 移动一个字符&#xff1b;上/下 移动一行 ^Vc ^Vn插入字符 c 的本义/十进制值 n u U撤销最近的改动 / 恢复最近被改动的行b w向 左/右 移动一个单词…

递归与非递归法实现链表相加 CC150 V5 2.5题 java版

前言&#xff1a;这是一道很有意思的题目&#xff0c;原题如下&#xff1a;You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in reverse order, such that the 1’s digit is at the head of the list. W…

荷兰人发明的新客机是劈叉的!乘客坐在机翼上

全世界只有3.14 % 的人关注了青少年数学之旅与汽车外型的复杂多变相比&#xff0c;飞机的外型似乎总是那么朴实无华&#xff0c;不管是客机还是战斗机&#xff0c;大约都是大家习以为常的那个样子……但是&#xff0c;终于有人要推陈出新了&#xff01;荷兰皇家航空公司与代尔夫…

预约 .NET Conf: Focus on F# 活动,赢得官方周边!

James: 最近 .NET 基金会预告了将在本月29日底举行的 .NET Conf: Focus on F# 线上活动&#xff0c;预约这次活动还能有机会赢得官方大礼包。.NET Conf: Focus on F# 是一个免费的、为期一天的直播活动&#xff0c;会上有来自社区和使用f#语言的微软团队的演讲者。学习 F# 如何…

【转】测试人员的思想理念和工作方法

测试人员的思想理念和工作方法 软件测试的前提假设 测试人员进行软件测试的基本假设是“有罪推断” &#xff0c;即认为被测程序一定是有bug的&#xff0c;而且每个功能点的实现都存在bug&#xff0c;而且一定存在严重的bug。 请牢记这个假设 &#xff0c;一旦在日后的工作过程…