我最近看到,組合框控件模板具有以下行:我可以在Windows2008 R2服務器中設置SystemParameters.ComboBoxPopupAnimationKey?
PopupAnimation = 「{DynamicResource {X:靜態 SystemParameters.ComboBoxPopupAnimationKey}}」>
所以這裏是我的問題在哪裏可以我在window2008或windows7中設置了這個鍵?
我最近看到,組合框控件模板具有以下行:我可以在Windows2008 R2服務器中設置SystemParameters.ComboBoxPopupAnimationKey?
PopupAnimation = 「{DynamicResource {X:靜態 SystemParameters.ComboBoxPopupAnimationKey}}」>
所以這裏是我的問題在哪裏可以我在window2008或windows7中設置了這個鍵?
您當然可以關閉窗口中的動畫,但我認爲這會影響所有控件。如果這就是你要求的,那麼進入「系統屬性」(Win + Break),高級選項卡,然後單擊性能部分中的設置。
我添加了同樣的問題,我發現我可以在App.xaml中
直接更改參數<Application x:Class="WpfApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<PopupAnimation x:Key="{x:Static SystemParameters.ComboBoxPopupAnimationKey}">None</PopupAnimation>
</ResourceDictionary>
</Application.Resources>
</Application>
究竟是什麼你想實現什麼?你想改變你的ComboBoxes動畫的方式嗎? – Fayilt
是的,我想將動畫設置爲none。現在我只是想知道這是否會通過任何系統選項。 – blindmeis