2016-11-26 11 views

答えて

4

MetroWindowとすべての子にはFlowDirectionを設定できます。

FlowDirection="RightToLeft" 

enter image description here

だけMessageDialogにこれを設定したいなら、あなたは、例えば、スタイルを変更することができますこのようなApp.xamlで

<Style TargetType="{x:Type Dialog:MessageDialog}" 
     BasedOn="{StaticResource {x:Type Dialog:BaseMetroDialog}}"> 
    <Setter Property="FlowDirection" Value="RightToLeft" /> 
</Style> 

このように、すべてのメッセージダイアログにこのスタイルが適用されます。

enter image description here

は、この情報がお役に立てば幸い!

関連する問題