AfagFeederManual.xaml 1.6 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl x:Class="TeamAAS_VP.Views.DebugMod.AfagFeederManual"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:prism="http://prismlibrary.com/"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:vm="clr-namespace:TeamAAS_VP.ViewModels.DebugMod"
  8. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  9. xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
  10. xmlns:ucontrol="clr-namespace:TeamAAS_VP.Controls"
  11. xmlns:lex="http://wpflocalizeextension.codeplex.com"
  12. lex:LocalizeDictionary.DesignCulture="zh-CN"
  13. lex:ResxLocalizationProvider.DefaultAssembly="TeamAAS-VP"
  14. lex:ResxLocalizationProvider.DefaultDictionary="Lang"
  15. prism:ViewModelLocator.AutoWireViewModel="True"
  16. mc:Ignorable="d"
  17. d:Background="White"
  18. d:DataContext="{d:DesignInstance Type=vm:AfagFeederManualViewModel}"
  19. FontFamily="{DynamicResource DefaultFont}">
  20. <b:Interaction.Triggers>
  21. <b:EventTrigger EventName="Loaded">
  22. <b:InvokeCommandAction Command="{Binding LoadedCommand}" />
  23. </b:EventTrigger>
  24. </b:Interaction.Triggers>
  25. <Grid IsEnabled="{Binding IsAllowEdit}">
  26. <ucontrol:AflexControl x:Name="uvc"
  27. Grid.Column="0" />
  28. </Grid>
  29. </UserControl>