如何引用我的用户控件以在“设置”窗格中显示它们
本文关键字:设置 显示 何引用 引用 控件 用户 我的 | 更新日期: 2023-09-27 18:32:39
我正在尝试为我的 Windows 应用商店应用实现自定义设置。我有用户控件,例如UserControlAppBarColors.xaml:
<UserControl x:Name="userControlAppBarColor"
x:Class="Visits.UserControlAppBarColors"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Popup x:Name="popupAppBarColors" IsLightDismissEnabled="True"
Closed="PopupAppBarColors_OnClosed" HorizontalAlignment="Right" Width="345">
<Popup.Transitions>
<TransitionCollection>
<PaneThemeTransition/>
</TransitionCollection>
</Popup.Transitions>
<Grid Name="gridAppBarColors" Background="Brown" Width="345">
<StackPanel VerticalAlignment="Top" Margin="21,30,0,0" Orientation="Horizontal">
<StackPanel>
<Button Content="Go Back" Click="BackButton_Click" />
<TextBlock Text="App Bar Color" TextWrapping="Wrap" MaxWidth="144"
FontWeight="Normal" Style="{StaticResource SubheaderTextBlockStyle}" Margin="-2,-2,0,0" />
</StackPanel>
<StackPanel Margin="13,0,0,0">
<StackPanel Orientation="Horizontal">
<Canvas Background="Aqua" Width="20" Height="20"
VerticalAlignment="Center" Tapped="CanvasColor_Tapped"></Canvas>
<TextBlock Text="Aqua" VerticalAlignment="Center"></TextBlock>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Canvas Background="Black" Width="20" Height="20"
VerticalAlignment="Center"></Canvas>
<TextBlock Text="Black" VerticalAlignment="Center"></TextBlock>
</StackPanel>
. . .
基于Adam Nathan的书,在第503-507页,我已将此代码添加到App.xaml.cs:
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
SettingsPane.GetForCurrentView().CommandsRequested += OnCommandsRequested;
}
private void OnCommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs
spcreArgs)
{
spcreArgs.Request.ApplicationCommands.Add(new SettingsCommand(1, "App Bar Color",
OnSettingsCommand));
. . .
}
// Finish this; see Nathan p. 504-507
private void OnSettingsCommand(Windows.UI.Popups.IUICommand command)
{
int id = (int) command.Id;
switch (id)
{
case 1:
break;
. . .
}
}
。以及这个到MainPage.xaml(在上下文中显示,在"网格"声明之后):
. . .
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<!--next four lines from Nathan p. 506-->
<local:UserControlAppBarColors x:Name="appBarColors" />
. . .
。但在 App.xaml 的 switch 语句中.cs以下任何一项都不起作用 - 都说"无法解析符号":
// Failure 1:
case 1:
this.appBarColors.Show(command); // name from MainPage.xaml
break;
// Failure 2:
case 1:
this.userControlAppBarColor.Show(command); // name of user control from
UserControlAppBarColors.xaml
break;
// Failure 3:
case 1:
this.popupAppBarColors.Show(command); // name of user control's popup from
UserControlAppBarColors.xaml
break;
我在这里误解或编码错误吗?
更新
事实证明,我的第一段代码放在了错误的地方:它需要在 MainPage.xaml 中,而不是 App.xaml.cs 中.cs - 现在它可以工作了!
顺便说一句,我的第一个想法(appBarColors.Show(command))是有效的。
您正在对switch
结构中的所有案例标签使用case 1:
。使用case 2:
或适当的标签。箱子标签必须是唯一的。
Damir Arh 在这里给出了答案
事实证明,我的第一段代码放在了错误的地方:它需要在 MainPage.xaml 中,而不是 App.xaml.cs 中.cs - 现在它可以工作了!
顺便说一句,我的第一个想法(appBarColors.Show(command))是有效的。