VisionSolution.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <UserControl x:Class="TeamAAS_VP.Views.DebugMod.VisionSolution"
  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:sys="clr-namespace:System;assembly=mscorlib"
  11. xmlns:enums="clr-namespace:TeamAAS_VP.Enums"
  12. xmlns:lex="http://wpflocalizeextension.codeplex.com"
  13. lex:LocalizeDictionary.DesignCulture="zh-CN"
  14. lex:ResxLocalizationProvider.DefaultAssembly="TeamAAS-VP"
  15. lex:ResxLocalizationProvider.DefaultDictionary="Lang"
  16. prism:ViewModelLocator.AutoWireViewModel="True"
  17. FontFamily="{DynamicResource DefaultFont}"
  18. mc:Ignorable="d"
  19. d:Background="White"
  20. d:DataContext="{d:DesignInstance Type=vm:VisionSolutionViewModel}">
  21. <b:Interaction.Triggers>
  22. <b:EventTrigger EventName="Loaded">
  23. <b:InvokeCommandAction Command="{Binding LoadedCommand}" />
  24. </b:EventTrigger>
  25. </b:Interaction.Triggers>
  26. <Grid IsEnabled="{Binding IsAllowEdit}">
  27. <Grid.RowDefinitions>
  28. <RowDefinition Height="auto" />
  29. <RowDefinition Height="*" />
  30. </Grid.RowDefinitions>
  31. <!--<Release:VmGlobalToolControl Grid.Row="0"
  32. HorizontalAlignment="Left"
  33. VerticalAlignment="Top" />
  34. <Release:VmMainViewConfigControl Grid.Row="1" />-->
  35. </Grid>
  36. </UserControl>