假设我使用以下代码在 XAML 中创建了一个应用栏按钮
<Button Style="{StaticResource PicturesAppBarButtonStyle}"
AutomationProperties.Name="{StaticResource localizedPictureText"}/>
如何使用 C# 代码创建具有相同效果的按钮?
感谢!
假设我使用以下代码在 XAML 中创建了一个应用栏按钮
<Button Style="{StaticResource PicturesAppBarButtonStyle}"
AutomationProperties.Name="{StaticResource localizedPictureText"}/>
如何使用 C# 代码创建具有相同效果的按钮?
感谢!
大家好,我找到了回答与我类似的另一个问题的天才。 如何使用 C# 在 Windows Store App 中创建底部或顶部 AppBar?
但是我按照他的回答写了代码
b1.Style = Application.Current.Resources["EditAppBarButtonStyle"] as Style;
我收到一个名为 Error HRESULT E_FAIL 的错误已从对 COM 组件的调用中返回。
这是因为我正在本地机器(只是普通桌面)上测试代码吗?
希望有人能证实。谢谢。