|
@@ -74,8 +74,10 @@
|
|
|
Foreground="{StaticResource color.sys.text.neutral.lv1}" Height="28"></TextBlock>
|
|
|
<Grid Width="16" Height="16" Margin="4,0,0,4" WindowChrome.IsHitTestVisibleInChrome="True">
|
|
|
<Grid.ToolTip>
|
|
|
- <ToolTip Background="White">
|
|
|
- <TextBlock FontWeight="Bold" Text="{Binding T_LimitTip}" />
|
|
|
+ <ToolTip Background="Transparent" BorderBrush="Transparent">
|
|
|
+ <Border Background="{StaticResource color.sys.layout.dark.bg}" Width="255" Height="66" CornerRadius="4">
|
|
|
+ <TextBlock Foreground="{StaticResource color.sys.text.anti.norm}" VerticalAlignment="Center" HorizontalAlignment="Center" Width="240" FontSize="12" Text="{Binding T_LimitTip}" />
|
|
|
+ </Border>
|
|
|
</ToolTip>
|
|
|
</Grid.ToolTip>
|
|
|
<Ellipse Width="14" Height="14" Fill="white" Stroke="#CED0D4">
|
|
@@ -126,11 +128,11 @@
|
|
|
<Grid>
|
|
|
<Border Width="250" Height="180" Margin="16,0,0,0" Panel.ZIndex="1" BorderBrush="{StaticResource color.field.border.error}" Visibility="{Binding ErrorVisible}" BorderThickness="1" CornerRadius="4" >
|
|
|
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" Margin="16">
|
|
|
- <Grid Width="16" Height="16" Margin="4,0,8,0">
|
|
|
+ <Grid Width="16" Height="16" Margin="4,0,8,0" VerticalAlignment="Top">
|
|
|
<Ellipse Width="14" Height="14" Fill="#F3465B"></Ellipse>
|
|
|
<Path Data="M7.25 4V9H8.75V4H7.25ZM7.25 10.5V12H8.75L8.75 10.5H7.25Z" Fill="white"/>
|
|
|
</Grid>
|
|
|
- <TextBlock Text="{Binding ErrorTipText}" FontSize="14" FontFamily="SF Pro Text" Foreground="#F3465B" VerticalAlignment="Center"></TextBlock>
|
|
|
+ <TextBlock Text="{Binding ErrorTipText}" FontSize="14" FontFamily="SF Pro Text" Foreground="#F3465B" VerticalAlignment="Center" TextWrapping="Wrap" Width="180"></TextBlock>
|
|
|
</StackPanel>
|
|
|
</Border>
|
|
|
<cus:TextBoxEx x:Name="TranslateTextBoxEx" Width="250" Height="180" Margin="16,0,0,0" Text="{Binding TranslateText}" FontFamily="Segoe UI" ShowClose="False" VerticalContentAlignment="Top" HorizontalContentAlignment="Left" TextWrapping="Wrap" Padding="8" IsReadOnly="True">
|