2017-05-06 83 views

回答

1

通過this StackOverflow post這與Button S中的類似問題涉及指導(其行爲類似,但並不完全相同),在source code for the control,和智能感知,事實證明,一個可以修改ControlsHelper.ContentCharacterCasing取得預期的效果。特別是,以下風格給出與Metro風格相同的Expander,但是具有正常外殼:

<Style x:Key="MetroExpanderWithNormalCase" TargetType="Expander" BasedOn="{StaticResource MetroExpander}"> 
    <Setter Property="controls:ControlsHelper.ContentCharacterCasing" Value="Normal"/> 
</Style> 
相關問題