Skip to content

Commit 963a3ec

Browse files
committed
save
1 parent 2e8c7c3 commit 963a3ec

35 files changed

+582
-60
lines changed

NetDebug/App.xaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@
44
xmlns:local="clr-namespace:MeowType.NetDebug"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
7-
<FontFamily x:Key="FiraCodeLight">pack://application:,,,/#Fira Code Light</FontFamily>
7+
<FontFamily x:Key="FiraCodeLight">pack://application:,,,/Fonts/#Fira Code Light</FontFamily>
8+
<Style TargetType="{x:Type local:Tab}">
9+
<!--<Setter Property="Template">
10+
<Setter.Value>
11+
<ControlTemplate TargetType="{x:Type UserControl}">
12+
13+
</ControlTemplate>
14+
</Setter.Value>
15+
</Setter>-->
16+
</Style>
817
</Application.Resources>
918
</Application>

NetDebug/App.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ namespace MeowType.NetDebug
1313
/// </summary>
1414
public partial class App : Application
1515
{
16+
1617
}
1718
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

NetDebug/Common/TabView.xaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<UserControl x:Class="MeowType.NetDebug.Common.TabView"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
5+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6+
xmlns:local="clr-namespace:MeowType.NetDebug.Common"
7+
mc:Ignorable="d"
8+
d:DesignHeight="450" d:DesignWidth="800">
9+
<Grid>
10+
11+
</Grid>
12+
</UserControl>

0 commit comments

Comments
 (0)