OrderFloatView.xaml 1.1 KB

123456789101112131415161718192021222324
  1. <Window x:Class="Muchinfo.MTPClient.Trade.Views.OrderFloatView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:converters="clr-namespace:Muchinfo.MTPClient.Infrastructure.Converters;assembly=Client.Infrastructure"
  5. xmlns:resources="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
  6. xmlns:views="clr-namespace:Muchinfo.MTPClient.Trade.Views"
  7. Title="{Binding TradeViewModel.WinTitle,
  8. Mode=OneWay}"
  9. SizeToContent="Height"
  10. Style="{DynamicResource DialogWindowStyle}"
  11. WindowStartupLocation="CenterOwner">
  12. <Window.Resources>
  13. <converters:StringToVisibilityConverter x:Key="stringToVisibilityConverter" />
  14. <converters:RelationModeConverter x:Key="relationModeConverter" />
  15. <converters:RelationPModeConverter x:Key="relationPModeConverter" />
  16. <BooleanToVisibilityConverter x:Key="ToVisibilityConverter" />
  17. </Window.Resources>
  18. <Grid>
  19. <views:OrderContent Margin="35,24,0,20" />
  20. </Grid>
  21. </Window>