Skip to content

Commit

Permalink
改改
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0ckj0ckey committed Apr 19, 2022
1 parent 2b16193 commit e69896a
Show file tree
Hide file tree
Showing 8 changed files with 376 additions and 316 deletions.
Binary file added Assets/Icon/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Models/MDColor.cs → Models/AndroidColor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

namespace SeeColors_UWP
{
public class MDColor
public class AndroidColor
{
public string Name { get; set; }
public string Hex { get; set; }

public MDColor(string name, string hex) { this.Name = name; this.Hex = hex; }
public AndroidColor(string name, string hex) { this.Name = name; this.Hex = hex; }
}
}
4 changes: 2 additions & 2 deletions Models/EveryColor.cs → Models/WindowsColor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

namespace SeeColors_UWP
{
public class EveryColor
public class WindowsColor
{
public string Name { get; set; }
public double RValue { get; set; }
public double GValue { get; set; }
public double BValue { get; set; }
public string HEX { get; set; }
public string Hex { get; set; }
public Windows.UI.Color VisualColor { get; set; }
}
}
5 changes: 3 additions & 2 deletions SeeColors.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="Models\EveryColor.cs" />
<Compile Include="Models\WindowsColor.cs" />
<Compile Include="MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
<Compile Include="Models\MDColor.cs" />
<Compile Include="Models\AndroidColor.cs" />
<Compile Include="Views\MDColorInfo.xaml.cs">
<DependentUpon>MDColorInfo.xaml</DependentUpon>
</Compile>
Expand All @@ -130,6 +130,7 @@
<ItemGroup>
<Content Include="Assets\ColorsDotRainbow.png" />
<Content Include="Assets\Icon\android.png" />
<Content Include="Assets\Icon\logo.png" />
<Content Include="Assets\Icon\mdlogo.png" />
<Content Include="Assets\Icon\windows.png" />
<Content Include="Assets\LargeTile.scale-100.png" />
Expand Down
Loading

0 comments on commit e69896a

Please sign in to comment.