| 123456789101112131415161718192021222324 |
- <Window x:Class="Muchinfo.MTPClient.Trade.Views.OrderFloatView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:converters="clr-namespace:Muchinfo.MTPClient.Infrastructure.Converters;assembly=Client.Infrastructure"
- xmlns:resources="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
- xmlns:views="clr-namespace:Muchinfo.MTPClient.Trade.Views"
- Title="{Binding TradeViewModel.WinTitle,
- Mode=OneWay}"
-
- SizeToContent="Height"
- Style="{DynamicResource DialogWindowStyle}"
- WindowStartupLocation="CenterOwner">
- <Window.Resources>
- <converters:StringToVisibilityConverter x:Key="stringToVisibilityConverter" />
- <converters:RelationModeConverter x:Key="relationModeConverter" />
- <converters:RelationPModeConverter x:Key="relationPModeConverter" />
-
- <BooleanToVisibilityConverter x:Key="ToVisibilityConverter" />
- </Window.Resources>
- <Grid>
- <views:OrderContent Margin="35,24,0,20" />
- </Grid>
- </Window>
|