本文介绍了我如何使用在另一个Windows窗体应用C#中声明的变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想制作一个菜单,我可以在获得某个xp后解锁按钮,但是我无法从另一个表单重新获得xp的值,所以我该怎么做?



我尝试了什么:



i尝试过:public int xp {get; set;};

但是在我键入的另一种形式:totalxp = form2.xp我得到一个错误

i want to make a menu where i can unlock buttons after gaining a certain xp , but i am unable to regain access to the value of xp from another form , so what should i do ?

What I have tried:

i have tried : public int xp{get;set;};
but in the other form when i type : totalxp=form2.xp i get an error

推荐答案


这篇关于我如何使用在另一个Windows窗体应用C#中声明的变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 16:03