当我只有字符串格式的控件名称时,如何动态添加用户控件?银光,C#

发布于 2024-10-19 04:21:57 字数 462 浏览 2 评论 0原文

我正在努力调用不同的用户控件,并且给我的唯一数据是一个字符串,用于调用我创建的用户控件。当我知道名称时,我可以硬编码并在后面的代码中添加该控件,并以这种方式动态添加它,但是当控件的名称通过字符串传递给我时,我无法将其传递给我的usercontrol 对象并使其不为空...

这是我的代码:

string userControlName = "ReportFilterOptions";                
Type type = this.GetType();
Assembly assembly = type.Assembly;
UserControl c = (UserControl)assembly.CreateInstance(type.FullName + "." + userControlName);
gridReport.Children.Clear();
gridReport.Children.Add(c);

I'm working on calling different user controls, and the only data that I've been given is a string in which to call the user control that I have created. When I know the name, I can hard code and add that control in the code behind and add it dynamically that way, but when the name of the control is being passed to me via a string, I'm having trouble passing that to my usercontrol object and having it not be null...

Here is my code:

string userControlName = "ReportFilterOptions";                
Type type = this.GetType();
Assembly assembly = type.Assembly;
UserControl c = (UserControl)assembly.CreateInstance(type.FullName + "." + userControlName);
gridReport.Children.Clear();
gridReport.Children.Add(c);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琴流音 2024-10-26 04:21:57

使用System.Activator.CreateInstance

请参阅此示例。重要的部分是:

// get type of class Calculator from just loaded assembly
Type calcType = testAssembly.GetType("Test.Calculator");

// create instance of class Calculator
object calcInstance = Activator.CreateInstance(calcType);

您可以通过迭代所有类型以匹配字符串来使其更加“用户友好”。

请参阅 此文件的第 54 行左右< /a> 在方法 UpdateClassList 中。

Use System.Activator.CreateInstance.

See this example. The important parts are:

// get type of class Calculator from just loaded assembly
Type calcType = testAssembly.GetType("Test.Calculator");

// create instance of class Calculator
object calcInstance = Activator.CreateInstance(calcType);

You could make this more "user friendly" by iterating all the types to match string.

See around line 54 of this file in method UpdateClassList.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文