public string setFarenheit { set; }
public string getConvertedheit { get; set; }
并将转换后的heit值赋给类中的getConvertedheit属性。
getConvertedheit = heitConvertedintoCelcius;//your converted celcius heit temp inside the class.
在Form类中,如果它们存在于相同的命名空间中,则可以像下面这样调用它。
HeitConvertingClass hcc = new HeitConvertingClass();
hcc.setFarenheit=Userinput(the datatype is your choice may be int or float);
MessageBox.Show(hcc.getCovertedheit.ToString());
3条答案
按热度按时间lnxxn5zx1#
您需要创建方法
然后你需要调用类的方法
注:此处仅为部分示例
6yjfywim2#
有两种可能数据绑定或通过文本框的TEXT属性访问值。
第二个是在这个场景中更容易显示的,所以让我们继续。
您将在CONVERT按钮的Click事件处理程序中包含此代码(这是假设您的转换类具有CONVERT方法,该方法将farenheit temp作为字符串接收,然后返回您想要显示的字符串)。
这是将该值获取到类中并将最终结果返回到UI中的基本方法。
wtlkbnrh3#
你需要在类中声明两个公共properties,一个是
setFarenheit
,另一个是getConvertedheit
,现在你可以调用这个类并可以创建如下的属性。并将转换后的heit值赋给类中的getConvertedheit属性。
在Form类中,如果它们存在于相同的命名空间中,则可以像下面这样调用它。