1234567891011121314151617181920 |
- <UserControl x:Class="PDF_Office.CustomControl.WritableComboBox"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:PDF_Office.CustomControl"
- mc:Ignorable="d"
- d:DesignHeight="32" d:DesignWidth="200">
- <Grid>
- <ComboBox x:Name="writableComboBox" Grid.Column="1" Visibility="Visible" MinHeight="32" MinWidth="58"
- SelectionChanged="writableComboBox_SelectionChanged">
- <ComboBoxItem Tag="0">关</ComboBoxItem>
- <ComboBoxItem Tag="1">开</ComboBoxItem>
- </ComboBox>
- <TextBox x:Name="writableTextBox" VerticalContentAlignment="Center" Visibility="Hidden" MinHeight="{Binding ElementName=EnterableComboBox, Path=MinHeight}" Grid.Column="0" HorizontalAlignment="Left" >
- </TextBox>
- </Grid>
- </UserControl>
|