.NET VS win表单项目中的序列化顺序(设计器代码)问题
Posted
技术标签:
【中文标题】.NET VS win表单项目中的序列化顺序(设计器代码)问题【英文标题】:Problem with serialization order (designer code) in .NET VS win form project 【发布时间】:2021-02-19 18:39:40 【问题描述】:据我的另一个question:
我有一个列表和一个选定的索引,我序列化:
public interface IControlListManager
List<ControlListManager.TargetSettings> TargetList get; set;
int SelectedIndex get; set;
在designer.cs里面我得到了下面的序列化代码:
//...
controlListManager1.SelectedIndex = 0;
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.InfoPanel, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.InfoText, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.HLine, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.LogiDevType, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.LogiDevSetBtn, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.SystrayContextMenu, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.restoreToolStripMenuItem, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.exitToolStripMenuItem, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.panel1, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.IdentifierInput, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.ExitButton, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.IdentifierCheckbox, "", DisplayModes.FollowXY, true, 0, 0, 0));
controlListManager1.TargetList.Add(new ControlListManager.TargetSettings(this.SaveLogFile, "", DisplayModes.FollowXY, true, 0, 0, 0));
//...
问题是SelectedIndex
应该在列表之后,因为它很好地代表了列表的索引。
如何告诉设计师把它放在列表后面?
【问题讨论】:
ISupportInitialize Interface。更好的描述在这里:The role of BeginInit() and EndInit() methods in Designer 谢谢。这就是我一直在寻找的。span> 嗯。只是一个小问题。答案中的人说默认情况下它将按字母顺序设置。我可以将 SelectedIndex 的 var 名称更改为 ZSelectedIndex 吗? ;) 【参考方案1】:因为我不想弄乱 BeginInit() 和 EndInit() 方法(我真正应该这样做),并发现,序列化程序的顺序是按字母顺序排列的,这确实是事实。
我将SelectedIndex
重命名为ZSelectedIndex
。有趣又肮脏 - 但快速的解决方案。
【讨论】:
以上是关于.NET VS win表单项目中的序列化顺序(设计器代码)问题的主要内容,如果未能解决你的问题,请参考以下文章
使用框架 4.7.2 运行 SDK 项目的 vs2019 中的控件和表单缺少图标和视图设计器选项
Win7上的ASP.NET MVC3项目在Win10上运行的一个坑