PageRenderTime 46ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/V2/trunk/RI/Desktop/StockTraderRI.Modules.Position/Orders/OrderCommandsView.xaml

#
XAML | 9 lines | 9 code | 0 blank | 0 comment | 0 complexity | cf3f981b139e85c90522c3e78fee54e3 MD5 | raw file
  1. <UserControl x:Class="StockTraderRI.Modules.Position.Orders.OrderCommandsView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:inf="clr-namespace:StockTraderRI.Infrastructure;assembly=StockTraderRI.Infrastructure">
  5. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
  6. <Button Name="SubmitButton" Command="{Binding SubmitCommand}" Template="{StaticResource SubmitButtonTemplate}" Cursor="Hand">Submit</Button>
  7. <Button Name="CancelButton" Command="{Binding CancelCommand}" Template="{StaticResource CancelButtonTemplate}" Cursor="Hand">Cancel</Button>
  8. </StackPanel>
  9. </UserControl>