Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个里面有一个 FlipView 的 XAML 视图。我已向 FlipView.Items 集合添加了 3 个 XAML 页面。其中一些页面内部有文本块,我想将一些数据传递给将写入这些文本块中的内部页面。
我该怎么做?FlipViews 似乎没有 Children 集合。
提前致谢。
设置您想要更改的文本块的名称,然后使用此函数获取它们的实例:FrameworkElement.FindName
http://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.frameworkelement.findname(v=win.10).aspx
其他方式,用户 MVVM 模式在 UI 上显示数据。