简体   繁体   English

具有复选框的WPF ComboBox和具有搜索字段的文本框在滚动条上显示文本框

[英]WPF ComboBox with checkboxes and textbox with search field show text box on scroll

How to display the textbox control on scroll of popup inside a combo box, this is continuation for WPF ComboBox with checkboxes and textbox with search field 如何在组合框内的弹出窗口滚动条上显示文本框控件,这是带有复选框的WPF ComboBox和带有搜索字段的文本框的延续

Also I would like to display a line gap between text box and the combo box items binded 我也想显示文本框和绑定的组合框项目之间的行距

<Popup 
Name="Popup"
Placement="Bottom"                        
AllowsTransparency="True" 
Focusable="False"  IsOpen="{TemplateBinding IsDropDownOpen}"
PopupAnimation="Slide">
<Grid 
    Name="DropDown"
    SnapsToDevicePixels="True"  
    MinWidth="{TemplateBinding ActualWidth}"
    MaxHeight="{TemplateBinding MaxDropDownHeight}">
    <Border 
        x:Name="DropDownBorder"
        BorderThickness="1" Background="White"
        BorderBrush="Black"/>
    <ScrollViewer Margin="4,6,4,6" SnapsToDevicePixels="True" DataContext="{Binding}">
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <TextBox />
            <StackPanel Grid.Row="1" IsItemsHost="True" KeyboardNavigation.DirectionalNavigation="Contained" />
        </Grid>
    </ScrollViewer>
</Grid>

Try to put the ScrollViewer in the same Grid as the TextBox but in another row, eg: 尝试将ScrollViewerTextBox放在同一Grid中,但放在另一行中,例如:

<Popup 
    Name="Popup"
    Placement="Bottom"                        
    AllowsTransparency="True" 
    Focusable="False"  IsOpen="{TemplateBinding IsDropDownOpen}"
    PopupAnimation="Slide">
    <Grid 
        Name="DropDown"
        SnapsToDevicePixels="True"  
        MinWidth="{TemplateBinding ActualWidth}"
        MaxHeight="{TemplateBinding MaxDropDownHeight}">
        <Border 
            x:Name="DropDownBorder"
            BorderThickness="1" Background="White"
            BorderBrush="Black"/>
        <Grid Margin="4,6,4,6" SnapsToDevicePixels="True" DataContext="{Binding}">
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="*" />
            </Grid.RowDefinitions>
            <TextBox />
            <ScrollViewer Grid.Row="1">
                <StackPanel IsItemsHost="True" KeyboardNavigation.DirectionalNavigation="Contained" />
            </ScrollViewer>
        </Grid>
    </Grid>
</Popup>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM