PageRenderTime 37ms CodeModel.GetById 14ms RepoModel.GetById 1ms app.codeStats 0ms

/V4/Quickstarts/EventAggregation/Desktop/ModuleA/AddFundView.xaml

#
XAML | 18 lines | 18 code | 0 blank | 0 comment | 0 complexity | 75494d5d9a64e642189c326e869fb685 MD5 | raw file
  1. <UserControl x:Class="ModuleA.AddFundView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Width="Auto">
  5. <StackPanel>
  6. <Label>Customer:</Label>
  7. <ComboBox Name="CustomerCbx" Margin="5" Style="{DynamicResource SimpleComboBox}" Width="Auto" HorizontalAlignment="Stretch">
  8. <ComboBoxItem>Customer1</ComboBoxItem>
  9. <ComboBoxItem>Customer2</ComboBoxItem>
  10. </ComboBox>
  11. <Label>Fund:</Label>
  12. <ComboBox Name="FundCbx" Margin="5" Style="{DynamicResource SimpleComboBox}" Width="Auto" HorizontalAlignment="Stretch">
  13. <ComboBoxItem>FundA</ComboBoxItem>
  14. <ComboBoxItem>FundB</ComboBoxItem>
  15. </ComboBox>
  16. <Button Name="AddButton" Margin="5" Width="75" Height="25" Style="{DynamicResource SimpleButton}" HorizontalAlignment="Left">Add</Button>
  17. </StackPanel>
  18. </UserControl>