gpt4 book ai didi

c# - 如何为表单控件创建模板函数?

转载 作者:行者123 更新时间:2023-11-30 20:37:31 24 4
gpt4 key购买 nike

该语句将更改表单对象的位置。

lblMessage.Location = new Point(0,0);

我想编写一个可以定位任何表单对象的通用模板函数

我想出了这个,但它无效:

public void ChangePosition<T>(T form_object)
{
form_object.Location = new Point(0,0);
}

我这样调用它:

    ChangePosition(lblMessage);

Error: 'T' does not contain a definition for 'Location' and no extension method 'Location' accepting a first argument of type 'T' could be found (are you missing a using directive or an assembly reference?)

我需要提及模板函数上的某种接口(interface)吗?如何调用泛型类型的扩展方法?

最佳答案

您不需要通用方法,您可以这样做:

public void ChangePosition(Control form_object)
{
form_object.Location = new Point(0,0);
}

表单中所有控件的基类是 Control,它具有 Location 属性。

关于c# - 如何为表单控件创建模板函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35945723/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com