123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <UserControl x:Class="TellerSystem.Controls.Ext.Controls.LeadTradeViewer"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:dhcc="http://www.dhcc.com.cn"
- xmlns:local="clr-namespace:TellerSystem.Controls.Ext.ControlsExt"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:tp="clr-namespace:TellerSystem.Controls.Ext.TradePageBase"
- mc:Ignorable="d">
- <UserControl.Resources>
- <Style x:Key="ControlStyle1" TargetType="{x:Type ContentControl}">
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="{x:Type ContentControl}">
- <Grid>
- <Border Width="800"
- Background="White"
- BorderBrush="White">
- <Grid>
- <ContentPresenter Width="800" />
- </Grid>
- </Border>
- </Grid>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </UserControl.Resources>
- <!--
- dhcc:FocusManager.IsOnlyMouseControl="True"
-
- <UserControl.Resources>
- <ItemsPanelTemplate x:Key="ListViewPanleTemplate">
- <StackPanel Loaded="StackPanel_Loaded" Orientation="Horizontal" />
- </ItemsPanelTemplate>
- </UserControl.Resources>
- -->
- <StackPanel VerticalAlignment="Top">
-
- <WrapPanel Name="LeadHeader"
- Height="30"
- Margin="0,5" />
-
- <Ellipse Height="1" Stroke="Green" />
-
- <ContentControl x:Name="lv_Leads"
- Height="400"
- Margin="0,5"
- Loaded="StackPanel_Loaded"
- ScrollViewer.HorizontalScrollBarVisibility="Auto"
- ScrollViewer.VerticalScrollBarVisibility="Auto"
- Style="{DynamicResource ControlStyle1}" />
-
- <Ellipse Height="1" Stroke="Green" />
- <StackPanel Margin="10"
- FlowDirection="RightToLeft"
- Orientation="Horizontal">
-
- <Button x:Name="btnPrevious"
- Width="80"
- Height="25"
- Click="btnPrevious_Click"
- Content="上一步"
- IsEnabled="False" />
- <Button x:Name="btnStep"
- Width="80"
- Height="25"
- Click="btnStep_Click"
- Content="跳 过"
- Visibility="Collapsed" />
- <Button x:Name="btnNext"
- Width="80"
- Height="25"
- Click="btnNext_Click"
- Content="下一步" />
- </StackPanel>
- </StackPanel>
- </UserControl>
|