|
@@ -88,7 +88,7 @@
|
|
|
<GridViewColumn Width="200" Header="Table Name" HeaderContainerStyle="{StaticResource HeaderStyle}">
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
<DataTemplate>
|
|
|
- <Label Width="198" Height="48" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Content="{Binding Name, UpdateSourceTrigger=PropertyChanged,NotifyOnSourceUpdated=True}">
|
|
|
+ <TextBlock Width="198" Height="48" FontSize="15" Padding="5,15,10,0" Text="{Binding Name, UpdateSourceTrigger=PropertyChanged,NotifyOnSourceUpdated=True}">
|
|
|
<i:Interaction.Triggers>
|
|
|
<i:EventTrigger EventName="MouseDown">
|
|
|
<cal:ActionMessage MethodName="SelectTable">
|
|
@@ -96,7 +96,7 @@
|
|
|
</cal:ActionMessage>
|
|
|
</i:EventTrigger>
|
|
|
</i:Interaction.Triggers>
|
|
|
- </Label>
|
|
|
+ </TextBlock>
|
|
|
</DataTemplate>
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
</GridViewColumn>
|