我正在使用Windows Form项目。我需要一个继承System.Windows.Forms.Form
的类,我将其命名为FormBase.cs
并继承System.Windows.Forms.Form
类。但是在解决方案资源管理器中FormBase.cs
得到了像Windows窗体的视图..现在,当我尝试从解决方案资源管理器中打开文件时,它在设计模式下打开由于它很简单class
我希望它必须在代码视图中打开,而不是在设计视图中打开。为什么会这样?如果我希望FormBase.cs
始终在代码视图中打开并在解决方案资源管理器中重新获得其类视图,我该怎么办?
FormBase.cs
看起来像:
public class FormBase : System.Windows.Forms.Form
{
public virtual Dictionary<string, string> NonSaveableReasons()
{
Dictionary<string, string> _nonSavebleReasons = new Dictionary<string, string>();
//MaskedTextBox.MaskedTextBox and MaskedTextBox.MyCombo are Custom Components
//which are of type TextBox and ComboBox respectively
//having 2 more properties name as "IsMandatory" and "LabelName"
foreach (MaskedTextBox.MaskedTextBox maskTextBox in this.Controls.OfType<MaskedTextBox.MaskedTextBox>())
{
if (maskTextBox.IsMandatory && string.IsNullOrEmpty(maskTextBox.Text) && !_nonSavebleReasons.ContainsKey(maskTextBox.Name))
_nonSavebleReasons.Add(maskTextBox.Name, maskTextBox.LabelName + " is mandatory.");
}
foreach (MaskedTextBox.MyCombo myCombo in this.Controls.OfType<MaskedTextBox.MyCombo>())
{
if (myCombo.IsMandatory && string.IsNullOrEmpty(myCombo.Text) && !_nonSavebleReasons.ContainsKey(myCombo.Name))
{
if (!_nonSavebleReasons.ContainsKey(myCombo.Name))
_nonSavebleReasons.Add(myCombo.Name, myCombo.LabelName + " is mandatory.");
}
}
return _nonSavebleReasons;
}
public string GetValidationStringMsg(Dictionary<string, string> nonSavableResons)
{
return nonSavableResons != null ? String.Join(Environment.NewLine, nonSavableResons.Select(a => a.Value).ToArray()) : string.Empty;
}
}
答案 0 :(得分:3)
你可以使用 System.ComponentModel.DesignerCategoryAttribute阻止Visual Studio在设计器中打开一个特定文件。您可以通过两种方式应用此属性。
第1步。将该属性应用于FormBase
,并将""
指定为类别:
[System.ComponentModel.DesignerCategory("")]
public class FormBase : System.Windows.Forms.Form
第2步。将该属性应用于源自FormBase
的每个表单,并指定"Form"
作为类别:
[System.ComponentModel.DesignerCategory("Form")]
public partial class MainForm : FormBase
请注意,必须使用属性的完全限定类型名称。这不起作用:
// BAD CODE - DON'T USE
using System.ComponentModel;
[DesignerCategory("")]
public class FormBase : System.Windows.Forms.Form
在FormBase.cs中上面 FormBase
,添加一个虚拟类并将属性应用于它,指定""
作为类别:
[System.ComponentModel.DesignerCategory("")]
internal class Unused
{
}
public class FormBase : System.Windows.Forms.Form
{
// ...
}
使用这种方法,您不需要将属性应用于从FormBase
派生的每个表单,而代价是未使用的类。
答案 1 :(得分:0)
在解决方案资源管理器中,用右手单击表单,然后按左侧的 F7 。表单现在每次都在代码视图中打开。