如何在 Winforms 应用程序中访问引用的类库的变量
我有一个 Windows 窗体应用程序,其中包含我的 Win 窗体项目中的类库的引用。
- win-form 有一个组合框和一个按钮。
- 类库有一个全局变量value1,value2和其他代码,这些代码根据value1执行一些代码。
在 win-form 中,我在组合框中进行选择,然后根据所做的选择单击按钮,我应该为类库的变量“value1”分配一个值,作为 value = true 。 我创建了一个类库的实例 classlibraryname clb = new classlibrary() 但之后我无法将 true 分配给类库变量 "value1" 。
我怎样才能给变量value1赋值???
我是使用 C# 和类库的新手。请帮忙
I have a Windows Forms application with a reference for the class library in my Win-forms project.
- The win-form has a combo-box and a button.
- the class library has a global variable value1,value2 and other code which depending on value1 executes some code.
In win-form i make a selection in the combo-box and on button click depending on the selection made i should assign a value to the variable "value1" of class library as value = true .
i created an instance of the class library as
classlibraryname clb = new classlibrary() but after that i am not able to assign true to the class library variable "value1" .
how can i assign a value to variable value1???
I am new to working with c# and class libraries .please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将类库中的变量声明为 public
然后在 winform 中执行以下操作:
Declare your variable in the class library as public
Then in your winform do the following: