怎样让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,一经查实,立即删除!

相关文章

智能优化算法应用:基于原子轨道搜索算法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、判断是否处于设计…

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

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

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

▲ 点击查看在知乎上曾经有一个话题&#xff1a;为什么会有数学很好但英语很差的人&#xff1f;这个话题还被浏览了四十多万次。说起这个话题&#xff0c;评论中很多人也纷纷表示感同身受。在上学的时候&#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…

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

全世界只有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# 如何…

.NET Day in China(上海-今日活动)| 线上线下

点击蓝字关注我们活动简介.NET 6 Preview 6 在 7月14日已经发布&#xff0c;.NET 6 是微软开启全平台统一一个 .NET 计划以来的第一个 LTS 版本&#xff0c;意义重大&#xff0c;微软在 .NET 6 引入了 MAUI&#xff0c;跨平台开发将更为简单&#xff0c;ASP.NET Core 也在不断的…

公司重金求数据分析师:为什么90%的公司都需要它?

全世界只有3.14 % 的人关注了青少年数学之旅混迹互联网的同学们&#xff0c;或多或少都对“数据分析师”这一职业有所耳闻。即使你不认识任何数据分析师&#xff0c;也一定看到过这类研究报告或者文章&#xff1a;Smart is the new sexy. 酷炫的图表&#xff0c;理性的分析阐述…

php配置问题汇总

前两天开始跟进PHP&#xff1b;我觉得&#xff0c;PHP的环境配置远比其他语言的要复杂很多。我所说的“其他语言”&#xff0c;包括Java&#xff0c;Oracle&#xff0c;scala&#xff0c;Python等。到现在PHP的环境被搭好&#xff0c;因为是全手动的配置&#xff0c;我完完整整…

Orchard Core 1.0.0 正式发布!

James: Orchard 最早是微软的员工创造的开源项目&#xff0c;使用的技术架构可以说是非常优秀&#xff0c;源码值得学习。功能也非常强大&#xff0c;支持模块化、多租户、工作流等等功能&#xff0c;可以说是 .NET 世界的 WordPress。一开始是.NET Framework 的&#xff0c;在…

[方法“Boolean Contains(System.Guid)”不支持转换为 SQL]的解决办法

Guid ClsID newGuid("d4ee9c52-8d68-4f33-9485-0926281c78ac");IList<Guid>Ids WebProduct.GetAllChildByID(ClsID);var query db.T_Products.Where(p >Ids.Contains((Guid)p.F_ClsID));//这一句编译时无错&#xff0c;但是一执行&#xff0c;就报错出错信息…

解决IE为7939.com的病毒~

病毒名称&#xff1a;“诡秘下载器”变种CXW&#xff08;Trojan.DL.Delf.cxw&#xff09;病毒类型&#xff1a;流氓软件病毒危害级别&#xff1a;★★★☆该病毒运行后会从***指定的网站下载指令并运行&#xff0c;会将用户IE浏览器的主页锁定为一个名叫“7939上网导航”的网站…

这哥们到底是应聘的还是来收购公司的?| 今日趣图

全世界只有3.14 % 的人关注了青少年数学之旅图源网络&#xff0c;侵权删

Abp太重了?轻量化Abp框架

本文首发于个人博客&#xff08;https://blog.zhangchi.fun/&#xff09;在进行框架的选型时&#xff0c;经常会听到“***框架太重了”之类的声音&#xff0c;比如“Abp太重了&#xff0c;不适合我们...”。事实上&#xff0c;Abp框架真的很重吗&#xff1f;框架的“轻”和“重…

六月赞歌

七月的脚步离我们近了&#xff0c;在六月即将过去的时候我是有些话想说的。今年的6月过得很充实&#xff0c;虽谈不上硕果累累&#xff0c;但至于还是收获颇丰。在这最想提的是生活杂谈小组在几位组长们的激情带动&#xff0c;各组员的热情参与下&#xff0c;站到了小组排行榜的…

避不开的分布式事务

前言关于前面系列的文章已经说到分布式服务之间的通信&#xff0c;则分布式事务接下来就是我们要一起学习的主题&#xff0c;走起。数据库事务在现有大大小小的系统中几乎是避免不开的&#xff0c;或多或少总会有一些业务关联在一块&#xff1b;对于单机事务的应用场景和操作&a…

matlab如何求矩阵的转置矩阵,怎么用MATLAB程序求转置矩阵?急需,高手帮忙………………...

在Matlab下输入&#xff1a;edit&#xff0c;然后将下面两行百分号之间的内容&#xff0c;复制进去&#xff0c;保存%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%function ff31(x)f1./[(x-2).^20.1]1./[(x-3).^40.01];%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 返…