Skip to content

Commit

Permalink
Change SampleApp to Gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
NotYoojun committed Dec 25, 2023
1 parent fdb8ed3 commit 5590d56
Show file tree
Hide file tree
Showing 830 changed files with 693 additions and 433 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
continue-on-error: true
run: |
dotnet build .\source\iNKORE.UI.WPF.Modern
dotnet build .\source\iNKORE.UI.WPF.Modern.SampleApp
dotnet build .\source\iNKORE.UI.WPF.Modern.Gallery
# dotnet pack .\source\iNKORE.UI.WPF.Modern.Controls --configuration Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg

- name: Upload binary libraries of iNKORE.UI.WPF.Modern.Controls
Expand All @@ -36,5 +36,5 @@ jobs:
- name: Upload sample apps
uses: actions/upload-artifact@v3
with:
name: iNKORE.UI.WPF.Modern.SampleApp files
path: .\source\iNKORE.UI.WPF.Modern.SampleApp\bin\Debug
name: iNKORE.UI.WPF.Modern.Gallery files
path: .\source\iNKORE.UI.WPF.Modern.Gallery\bin\Debug
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<br>

![Home of the SampleApp (Light theme)](docs/images/screenshot_home.png "Home of the SampleApp (Light theme)")
![Home of the Gallery (Light theme)](docs/images/screenshot_home.png "Home of the Gallery (Light theme)")

# ✨ Features

Expand Down
2 changes: 1 addition & 1 deletion iNKORE.UI.WPF.Modern.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "iNKORE.UI.WPF.Modern", "sou
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "iNKORE.UI.WPF.Modern.Controls", "source\Inkore.UI.WPF.Modern.Controls\iNKORE.UI.WPF.Modern.Controls.csproj", "{FE80560D-40A3-4469-AC0A-C725B583CAA7}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "iNKORE.UI.WPF.Modern.SampleApp", "source\Inkore.UI.WPF.Modern.SampleApp\iNKORE.UI.WPF.Modern.SampleApp.csproj", "{54049F5E-E57B-433E-B316-3C51F25B523D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "iNKORE.UI.WPF.Modern.Gallery", "source\Inkore.UI.WPF.Modern.Gallery\iNKORE.UI.WPF.Modern.Gallery.csproj", "{54049F5E-E57B-433E-B316-3C51F25B523D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WpfApp1", "source\samples\WpfApp1\WpfApp1.csproj", "{DBB698F7-FB37-4514-82C2-DA3C71A4B92F}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<local:ItemsPageBase
x:Class="iNKORE.UI.WPF.Modern.SampleApp.AllControlsPage"
x:Class="iNKORE.UI.WPF.Modern.Gallery.AllControlsPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:iNKORE.UI.WPF.Modern.SampleApp"
xmlns:local="clr-namespace:iNKORE.UI.WPF.Modern.Gallery"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
Title="All Controls"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using iNKORE.UI.WPF.Modern.Controls;
using iNKORE.UI.WPF.Modern.SampleApp.DataModel;
using iNKORE.UI.WPF.Modern.Gallery.DataModel;
using System;
using System.Collections.Generic;
using System.Linq;
Expand All @@ -14,7 +14,7 @@
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace iNKORE.UI.WPF.Modern.SampleApp
namespace iNKORE.UI.WPF.Modern.Gallery
{
/// <summary>
/// A page that displays a grouped collection of items.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="iNKORE.UI.WPF.Modern.SampleApp.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
<section name="iNKORE.UI.WPF.Modern.Gallery.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<userSettings>
<iNKORE.UI.WPF.Modern.SampleApp.Properties.Settings>
<iNKORE.UI.WPF.Modern.Gallery.Properties.Settings>
<setting name="MainWindowPlacement" serializeAs="String">
<value />
</setting>
<setting name="SelectedAppTheme" serializeAs="String">
<value>0</value>
</setting>
</iNKORE.UI.WPF.Modern.SampleApp.Properties.Settings>
</iNKORE.UI.WPF.Modern.Gallery.Properties.Settings>
</userSettings>
<runtime>
<AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Application
x:Class="iNKORE.UI.WPF.Modern.SampleApp.App"
x:Class="iNKORE.UI.WPF.Modern.Gallery.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:common="clr-namespace:iNKORE.UI.WPF.Modern.SampleApp.Common"
xmlns:local="clr-namespace:iNKORE.UI.WPF.Modern.SampleApp"
xmlns:presets="clr-namespace:iNKORE.UI.WPF.Modern.SampleApp.Presets"
xmlns:common="clr-namespace:iNKORE.UI.WPF.Modern.Gallery.Common"
xmlns:local="clr-namespace:iNKORE.UI.WPF.Modern.Gallery"
xmlns:presets="clr-namespace:iNKORE.UI.WPF.Modern.Gallery.Presets"
xmlns:sc="clr-namespace:SamplesCommon;assembly=SamplesCommon"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
Expand Down Expand Up @@ -181,7 +181,6 @@

<sys:String x:Key="ControlsName">All controls</sys:String>
<sys:String x:Key="AppTitleName">iNKORE.UI.WPF.Modern Gallery</sys:String>
<sys:String x:Key="WinUIVersion">SDK 0.10.0</sys:String>

<sys:String x:Key="NewControlsName">What's New</sys:String>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using iNKORE.UI.WPF.Modern.SampleApp.DataModel;
using iNKORE.UI.WPF.Modern.Gallery.DataModel;
using System.Reflection;
using System;

namespace iNKORE.UI.WPF.Modern.SampleApp
namespace iNKORE.UI.WPF.Modern.Gallery
{
public partial class App
{
Expand Down
Loading

0 comments on commit 5590d56

Please sign in to comment.