GetDateWindow.xaml 797 B

12345678910111213141516
  1. <Window x:Class="ivf_tl_Operate.Windows.GetDateWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:ivf_tl_Operate.Windows"
  7. xmlns:customUserControl="clr-namespace:ivf_tl_Operate.CustomUserControls"
  8. mc:Ignorable="d"
  9. WindowStyle="None"
  10. ShowInTaskbar="False"
  11. AllowsTransparency="True"
  12. WindowStartupLocation="CenterOwner" Width="1400" Height="1100">
  13. <Grid>
  14. <customUserControl:CustomerDateControl x:Name="_dateControl" />
  15. </Grid>
  16. </Window>