BacklogNotificatin.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Border x:Class="GeekDesk.Control.Other.BacklogNotificatin"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:hc="https://handyorg.github.io/handycontrol"
  5. Background="AliceBlue"
  6. BorderThickness="1"
  7. BorderBrush="{DynamicResource BorderBrush}"
  8. Width="320"
  9. Height="450">
  10. <Grid>
  11. <!--<TextBlock Text="You have a new task"
  12. VerticalAlignment="Top"
  13. FontSize="25"
  14. Foreground="#326CF3"
  15. HorizontalAlignment="Center" Margin="37.686,17.333,36.353,0"/>
  16. <Border Margin="27.647,69,36.354,329" Style="{StaticResource BorderTipInfo}" Height="50">
  17. <TextBlock Margin="10,0,0,0" FontSize="20" Text="任务名称"/>
  18. </Border>
  19. <Border Style="{StaticResource BorderRegion}" Width="250" Height="200" Effect="{StaticResource EffectShadow1}" Margin="31.646,168,36.353,80">
  20. <Border Background="{DynamicResource InfoBrush}">
  21. <TextBlock Text="agaharhaewrhehssssssss任务名称ssssssssssssssssss"
  22. VerticalAlignment="Center"
  23. HorizontalAlignment="Center"
  24. Foreground="White"
  25. TextWrapping="Wrap"
  26. TextAlignment="Center"
  27. Margin="10"
  28. FontSize="15"/>
  29. </Border>
  30. </Border>-->
  31. <ComboBox hc:DropDownElement.ConsistentWidth="False" SelectedIndex="0" Margin="219,334,39,84" Height="20" Width="60">
  32. <ComboBox.Items>
  33. <ComboBoxItem Content="分"/>
  34. <ComboBoxItem Content="时"/>
  35. </ComboBox.Items>
  36. </ComboBox>
  37. <Button Command="{Binding OpenCmd}" Content="关闭" Margin="10,0,10,20" Width="298" VerticalAlignment="Bottom"/>
  38. </Grid>
  39. </Border>