如何打印从编辑器中的日期选择器或MAUI中的标签中收集的日期?我尝试打印日期,但它没有显示任何内容。
<DatePicker x:Name="mDatePicker" Style="{StaticResource dateStyle}" MinimumDate="01/01/2020" MaximumDate="12/31/2022" Date="01/01/2022" />
<Label Style="{StaticResource label1Style}" Text="Location" HorizontalOptions="Start" VerticalOptions="Start" />
<Picker x:Name="picker" Title="Select a Company" Style="{StaticResource comboStyle}">
<Picker.ItemsSource>
<x:Array Type="{x:Type x:String}">
<x:String>Baboon</x:String>
<x:String>Capuchin Monkey</x:String>
<x:String>Blue Monkey</x:String>
<x:String>Squirrel Monkey</x:String>
<x:String>Golden Lion Tamarin</x:String>
<x:String>Howler Monkey</x:String>
<x:String>Japanese Macaque</x:String>
</x:Array>
</Picker.ItemsSource>
</Picker>
<Button HeightRequest="60" WidthRequest="300" Grid.Row="3" x:Name="inbtn" Text="In" Style="{StaticResource inButtonStyle}" SemanticProperties.Hint="navigate when clicked" Clicked="OnInClicked" HorizontalOptions="Center" />
<Button HeightRequest="60" WidthRequest="300" Grid.Row="3" x:Name="outbtn" Text="Out" Style="{StaticResource outButtonStyle}" SemanticProperties.Hint="navigate when clicked" Clicked="OnOutClicked" HorizontalOptions="Center" />
</VerticalStackLayout>
1条答案
按热度按时间v09wglhw1#
您可以尝试将
Reference
设置为DatePicker
,并将path
设置为Date
。请参考以下代码:
注:
如果使用
TimePicker
,则可以将Path
设置为Time
更新日期:
从你发布的新帖子中,我发现你想把你的
DesktopStartupPage.xaml.cs
中定义的变量time1
绑定到一个Entry
上,如下所示:/〉
然后我们需要直接绑定变量,如果你想在改变变量的值后更新UI,你可以为你的页面实现接口
INotifyPropertyChanged
。请参考以下代码:
主页.xaml
主页面.xaml.cs