从文本框中获取值

时间:2012-06-01 18:19:14

标签: c# windows-8 windows-runtime microsoft-metro

我知道它的愚蠢问这个问题,但我似乎无法从我的Windows 8 Metro应用程序的文本框中获得额外的Value(int)。已经尝试了几个小时,感觉如此愚蠢,有人帮助我。感谢

int test = textboxSharedTotal.GetValue;
int test = int.Parse(textboxSharedTotal);
int test = int.Parse(textboxSharedTotal.Text);

1 个答案:

答案 0 :(得分:3)

int test = int.Parse(textboxSharedTotal.Text);

应该有效。没有更多细节,很难帮助你。如果此文本框出现在对话框中但您想要提取值并在主窗体/应用程序中引用它,则需要在对话框函数调用之外声明int test并将其作为ref字符串传递。那么你可以设置it = int.Parse(textboxSharedTotal.Text);用户关闭对话框后仍然具有该值。

没有更多细节我不知道这是不是你的问题。