
this code throws the following exception:
InvalidArgument=Value of '0' is not valid for 'DropDownWidth'.
Parameter name: DropDownWidth
open a new windows application and put a syntax editor on the form. Add the following form load event:
private void Form1_Load(object sender, EventArgs e)
{
syntaxEditor1.Document.Language = new ActiproSoftware.SyntaxEditor.Addons.CSharp.CSharpSyntaxLanguage();
TypeMemberDropDownList list = new TypeMemberDropDownList();
list.SyntaxEditor = syntaxEditor1;
syntaxEditor1.Document.Language = DynamicSyntaxLanguage.LoadFromXml("c:\mylocation\ActiproSoftware.XML.xml", 0);
}
InvalidArgument=Value of '0' is not valid for 'DropDownWidth'.
Parameter name: DropDownWidth
open a new windows application and put a syntax editor on the form. Add the following form load event:
private void Form1_Load(object sender, EventArgs e)
{
syntaxEditor1.Document.Language = new ActiproSoftware.SyntaxEditor.Addons.CSharp.CSharpSyntaxLanguage();
TypeMemberDropDownList list = new TypeMemberDropDownList();
list.SyntaxEditor = syntaxEditor1;
syntaxEditor1.Document.Language = DynamicSyntaxLanguage.LoadFromXml("c:\mylocation\ActiproSoftware.XML.xml", 0);
}