■ 에디터 에러 툴팁 모양을 변경하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<Grid xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"> <dxe:DateEdit x:Name="dateEdit" Width="150" Height="25" MinValue="01/15/2008" MaxValue="12/13/2010"> <dxe:DateEdit.ErrorToolTipContentTemplate> <DataTemplate> <TextBlock Text="Value is out of borders" Foreground="Red" FontSize="12" /> </DataTemplate> </dxe:DateEdit.ErrorToolTipContentTemplate> </dxe:DateEdit> </Grid> |