|
13 | 13 | <Grid x:Name="rootGrid" Background="Transparent">
|
14 | 14 | <muxc:TabView
|
15 | 15 | x:Name="TabStrip"
|
16 |
| - Grid.Row="0" |
17 |
| - Padding="0" |
18 |
| - IsAddTabButtonVisible="False" |
19 | 16 | VerticalAlignment="Stretch"
|
20 | 17 | x:FieldModifier="public"
|
| 18 | + Background="Transparent" |
| 19 | + IsAddTabButtonVisible="False" |
21 | 20 | SelectionChanged="TabStrip_SelectionChanged"
|
22 | 21 | TabCloseRequested="TabStrip_TabCloseRequested"
|
23 | 22 | TabWidthMode="Equal">
|
|
29 | 28 | <DataTemplate>
|
30 | 29 | <Grid
|
31 | 30 | x:Name="DragArea2"
|
32 |
| - Background="Transparent" |
33 | 31 | Width="{x:Bind local:App.InteractionViewModel.DragAreaWidth, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
34 |
| - /> |
| 32 | + Background="Transparent" /> |
35 | 33 | </DataTemplate>
|
36 | 34 | </muxc:TabView.TabStripHeaderTemplate>
|
37 | 35 | <muxc:TabView.TabStripFooterTemplate>
|
38 | 36 | <DataTemplate>
|
39 | 37 | <Grid>
|
40 | 38 | <Grid.ColumnDefinitions>
|
41 |
| - <ColumnDefinition Width="Auto"/> |
42 |
| - <ColumnDefinition Width="*"/> |
| 39 | + <ColumnDefinition Width="Auto" /> |
| 40 | + <ColumnDefinition Width="*" /> |
43 | 41 | </Grid.ColumnDefinitions>
|
44 |
| - <Button Click="AddTabButton_Click" x:Name="AddTabButton" Margin="2,0" Background="Transparent" Width="28" Height="28"> |
| 42 | + <Button |
| 43 | + x:Name="AddTabButton" |
| 44 | + Width="28" |
| 45 | + Height="28" |
| 46 | + Margin="2,0" |
| 47 | + Background="Transparent" |
| 48 | + Click="AddTabButton_Click"> |
45 | 49 | <Button.Content>
|
46 |
| - <FontIcon FontSize="10" Glyph=""/> |
| 50 | + <FontIcon FontSize="10" Glyph="" /> |
47 | 51 | </Button.Content>
|
48 | 52 | </Button>
|
49 | 53 | <Grid
|
50 |
| - x:Name="DragArea" |
51 |
| - Background="Transparent" |
52 |
| - MinWidth="175" |
| 54 | + x:Name="DragArea" |
53 | 55 | Grid.Column="1"
|
54 |
| - Loaded="DragArea_Loaded" /> |
| 56 | + MinWidth="175" |
| 57 | + Background="Transparent" |
| 58 | + Loaded="DragArea_Loaded" /> |
55 | 59 | </Grid>
|
56 |
| - |
57 | 60 | </DataTemplate>
|
58 | 61 | </muxc:TabView.TabStripFooterTemplate>
|
59 | 62 | <muxc:TabView.KeyboardAccelerators>
|
|
0 commit comments