我无法将ToggleSwitch控件显示在Windows Phone应用中。我要使用的代码是:

<toolkit:ToggleSwitch Header="ToggleSwitch" Height="111" HorizontalAlignment="Left" Margin="7,397,0,0" Name="toggleSwitch1" VerticalAlignment="Top" Width="456" />

要么

<controls:ToggleSwitch Header="Test">
  <controls:ToggleSwitch.HeaderTemplate>
    <DataTemplate>
      <ContentControl Content="{Binding}" Foreground="Red"/>
    </DataTemplate>
  </controls:ToggleSwitch.HeaderTemplate>
</controls:ToggleSwitch>


两者都不起作用,我不知道为什么。这是我正在使用的C#应用​​程序。

最佳答案

我认为它必须使用Silverlight应用程序才能运行。不知道为什么。我只是使用了一个复选框。

07-24 22:21