VC表单app中的变量继承

时间:2013-03-03 12:25:01

标签: visual-c++ c++-cli

我在VC表单应用程序中需要一些变量继承的帮助!我有这段代码:

string ks;          
ifstream sfile(ks);

if (sfile)
{
    PatInfo ^ form = gcnew PatInfo;
    form->ShowDialog();

}                                           
else 
{
    MessageBox::Show( "Please try again.");
}

我想将ks字符串传递给PatInfo表单。怎么办呢?

0 个答案:

没有答案