TimePicker的宽度不能调小怎么办
如题,TimePicker的宽度好像最小只能是默认的那个宽度,可是占用的空间太多,我想把它宽度调小一点,但是不论怎么去设置它宽度都没用,设置50,80.....都不行,结果还是默认的那个宽度,设置200,300就行,好像它的宽度有限制,不能设置太小
[解决办法]
<Grid>
<Grid.Resources>
<Style x:Key="smallMinimumWidth" TargetType="DatePicker">
<Setter Property="MinWidth" Value="50" />
<Setter Property="Width" Value="50" />
</Style>
</Grid.Resources>
<DatePicker Width="100" Style="{StaticResource smallMinimumWidth}"/>
</Grid>