如何在 Metro 风格应用程序的 xaml 中使用静态方法(带参数)?在 wpf 中我可以使用 ObjectDataProvider,但在 WinRT 中没有这样的东西。
我需要像这样使用它:
<button x:Name="MyButton" Content=MyStaticMethodCall("Sth") />
有没有办法做到这一点?还是将对象存储在资源中,然后像这样调用他的方法?
<button x:Name="MyButton" Content={StaticResource MyObject, Path=MyObject.MyMethod("bla") />