VisionSolution.xaml 2.0 KB

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