如何在 Winforms 应用程序中访问引用的类库的变量

发布于 2024-11-27 11:17:12 字数 385 浏览 1 评论 0原文

我有一个 Windows 窗体应用程序,其中包含我的 Win 窗体项目中的类库的引用。

  1. win-form 有一个组合框和一个按钮。
  2. 类库有一个全局变量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.

  1. The win-form has a combo-box and a button.
  2. 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 技术交流群。

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

发布评论

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

评论(1

苦行僧 2024-12-04 11:17:12

将类库中的变量声明为 public

    public bool variable1;

然后在 winform 中执行以下操作:

    classlibraryname clb = new classlibraryname();
    clb.variable1 = true;

Declare your variable in the class library as public

    public bool variable1;

Then in your winform do the following:

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