转到此处并使用:multiple selection on custom picker C# UWP并且我已经上传了代码示例。
我能够下载代码示例并使它工作,但是当我在项目中尝试该代码示例时,未找到 stackPanel 类型。
我注意到xmlns路径是不同的,但是我需要一个。
<Application xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:controls="clr-namespace:Windows.UI.Xaml.Controls;assembly=Windows.Foundation.UniversalApiContract"
x:Class="SDMSApp.App">
<Application.Resources>
<ResourceDictionary>
<Style TargetType="NavigationPage">
<Setter Property="BarTextColor" Value="White"/>
<Setter Property="HasBackButton" Value="false"/>
</Style>
</ResourceDictionary>
<DataTemplate x:Key="templateEmployee">
<StackPanel Orientation="Horizontal">
<controls:CheckBox Content="{Binding Content,Mode=TwoWay}" IsChecked="{Binding IsCheck,Mode=TwoWay}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
</StackPanel>
</DataTemplate>
</Application.Resources>