mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-20 00:16:35 +08:00
misc: rename project.
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
<ResourceDictionary xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Light/Palette.axaml"/>
|
||||
<!-- Controls -->
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Light/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Light/Window.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
@@ -1,13 +1,13 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="Semi.Demo.App">
|
||||
x:Class="Semi.Avalonia.Demo.App">
|
||||
<Application.Styles>
|
||||
|
||||
</Application.Styles>
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/DarkTheme.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/DarkTheme.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
@@ -2,7 +2,7 @@ using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace Semi.Demo
|
||||
namespace Semi.Avalonia.Demo
|
||||
{
|
||||
public partial class App : Application
|
||||
{
|
||||
@@ -3,7 +3,7 @@
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="Semi.Demo.MainWindow"
|
||||
x:Class="Semi.Avalonia.Demo.MainWindow"
|
||||
Title="Semi.Demo">
|
||||
<StackPanel>
|
||||
<Button>Primary</Button>
|
||||
@@ -1,6 +1,6 @@
|
||||
using Avalonia.Controls;
|
||||
|
||||
namespace Semi.Demo
|
||||
namespace Semi.Avalonia.Demo
|
||||
{
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
|
||||
namespace Semi.Demo
|
||||
namespace Semi.Avalonia.Demo
|
||||
{
|
||||
class Program
|
||||
{
|
||||
@@ -25,6 +25,6 @@
|
||||
<PackageReference Include="XamlNameReferenceGenerator" Version="1.3.4" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Avalonia.Themes.Semi\Avalonia.Themes.Semi.csproj" />
|
||||
<ProjectReference Include="..\Semi.Avalonia\Semi.Avalonia.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -2,8 +2,8 @@
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<!-- Add Resources Here -->
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Controls/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Controls/UserControl.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Controls/Window.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Controls/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Controls/UserControl.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Controls/Window.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
@@ -2,9 +2,9 @@
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<!-- Add Resources Here -->
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Dark/Palette.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Dark/Palette.axaml"/>
|
||||
<!-- Controls -->
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Dark/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Dark/Window.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Dark/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Dark/Window.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
@@ -2,8 +2,8 @@
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<!-- Add Resources Here -->
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Dark/Dark.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Base.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Controls/Controls.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Dark/Dark.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Base.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Controls/Controls.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
9
src/Semi.Avalonia/Themes/Light/Light.axaml
Normal file
9
src/Semi.Avalonia/Themes/Light/Light.axaml
Normal file
@@ -0,0 +1,9 @@
|
||||
<ResourceDictionary xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Light/Palette.axaml"/>
|
||||
<!-- Controls -->
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Light/Button.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Light/Window.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
@@ -3,8 +3,8 @@
|
||||
<!-- Add Resources Here -->
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Light/Light.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Themes/Base.axaml"/>
|
||||
<ResourceInclude Source="avares://Avalonia.Themes.Semi/Controls/Controls.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Light/Light.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Themes/Base.axaml"/>
|
||||
<ResourceInclude Source="avares://Semi.Avalonia/Controls/Controls.axaml"/>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
Reference in New Issue
Block a user