如何在WPF中的页面之间传递数据

时间:2012-09-19 21:21:03

标签: wpf vb.net wpf-controls wpfdatagrid

如何在WPF中的页面之间传递数据?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以在ctor中传递数据

PageSearchFieldFTS nextPage = new PageSearchFieldFTS((GabeLib.FieldDef)SearchFieldSelected, paramAndOr);
SrchItemEditDetail.Content = nextPage;   // SrchItemEditDetail is a frame


public partial class PageSearchFieldFTS : Page
{

    public PageSearchFieldFTS(GabeLib.FieldDef FieldDef, GabeLib.enumAndOr AndOr)
    {