diff --git a/Assets/DefaultAppIcon.png b/Assets/DefaultAppIcon.png
new file mode 100644
index 0000000..a9c19ee
Binary files /dev/null and b/Assets/DefaultAppIcon.png differ
diff --git a/Assets/DefaultTitleIcon.png b/Assets/DefaultTitleIcon.png
new file mode 100644
index 0000000..089293a
Binary files /dev/null and b/Assets/DefaultTitleIcon.png differ
diff --git a/Orbis Suite 3.0.sln b/Orbis Suite 3.0.sln
index 3d6ff65..1f49695 100644
--- a/Orbis Suite 3.0.sln
+++ b/Orbis Suite 3.0.sln
@@ -13,16 +13,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Misc", "Misc", "{DBCE3AAD-3
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OrbisNeighborHood", "Windows\OrbisNeighborHood\OrbisNeighborHood.csproj", "{81B068F7-776C-429F-BB7B-5563F75F1A39}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Installer", "Installer", "{6046C772-BE17-4BC8-A362-AD8C77F9178E}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
+ Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{81B068F7-776C-429F-BB7B-5563F75F1A39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{81B068F7-776C-429F-BB7B-5563F75F1A39}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {81B068F7-776C-429F-BB7B-5563F75F1A39}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {81B068F7-776C-429F-BB7B-5563F75F1A39}.Debug|x86.Build.0 = Debug|Any CPU
{81B068F7-776C-429F-BB7B-5563F75F1A39}.Release|Any CPU.ActiveCfg = Release|Any CPU
{81B068F7-776C-429F-BB7B-5563F75F1A39}.Release|Any CPU.Build.0 = Release|Any CPU
+ {81B068F7-776C-429F-BB7B-5563F75F1A39}.Release|x86.ActiveCfg = Release|Any CPU
+ {81B068F7-776C-429F-BB7B-5563F75F1A39}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -30,6 +38,7 @@ Global
GlobalSection(NestedProjects) = preSolution
{72E29C1E-8723-4885-A5ED-BD3A929D81B6} = {8F0E1457-FB1E-47A4-9DA8-74A6B757CAA4}
{81B068F7-776C-429F-BB7B-5563F75F1A39} = {8F0E1457-FB1E-47A4-9DA8-74A6B757CAA4}
+ {6046C772-BE17-4BC8-A362-AD8C77F9178E} = {8F0E1457-FB1E-47A4-9DA8-74A6B757CAA4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4B6EE1D0-5ADF-44A2-B6EE-E5C8E110EE47}
diff --git a/Windows/OrbisNeighborHood/App.xaml b/Windows/OrbisNeighborHood/App.xaml
index cf6c412..f5ab62d 100644
--- a/Windows/OrbisNeighborHood/App.xaml
+++ b/Windows/OrbisNeighborHood/App.xaml
@@ -15,8 +15,6 @@
-
-
diff --git a/Windows/OrbisNeighborHood/Controls/NewTargetView.xaml b/Windows/OrbisNeighborHood/Controls/NewTargetView.xaml
index 18dd1d9..d6d446e 100644
--- a/Windows/OrbisNeighborHood/Controls/NewTargetView.xaml
+++ b/Windows/OrbisNeighborHood/Controls/NewTargetView.xaml
@@ -16,7 +16,9 @@
+ Source="/OrbisNeighborHood;component/Images/Plus.png"
+ RenderOptions.BitmapScalingMode="Fant"
+ RenderOptions.EdgeMode="Aliased"/>
+
-
-
-
\ No newline at end of file
+
+
+
\ No newline at end of file
diff --git a/Windows/OrbisNeighborHood/Controls/SettingPanel.cs b/Windows/OrbisNeighborHood/Controls/SettingPanel.xaml.cs
similarity index 82%
rename from Windows/OrbisNeighborHood/Controls/SettingPanel.cs
rename to Windows/OrbisNeighborHood/Controls/SettingPanel.xaml.cs
index 5392a81..93bab7a 100644
--- a/Windows/OrbisNeighborHood/Controls/SettingPanel.cs
+++ b/Windows/OrbisNeighborHood/Controls/SettingPanel.xaml.cs
@@ -5,6 +5,13 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
namespace OrbisNeighborHood.Controls
{
@@ -13,6 +20,11 @@ namespace OrbisNeighborHood.Controls
///
public partial class SettingPanel : ContentControl
{
+ public SettingPanel()
+ {
+ InitializeComponent();
+ }
+
public string? SettingName { get; set; } = string.Empty;
public static readonly DependencyProperty SettingNameProperty =
diff --git a/Windows/OrbisNeighborHood/Controls/TargetView.xaml b/Windows/OrbisNeighborHood/Controls/TargetView.xaml
index 3a5713f..aa819d6 100644
--- a/Windows/OrbisNeighborHood/Controls/TargetView.xaml
+++ b/Windows/OrbisNeighborHood/Controls/TargetView.xaml
@@ -57,7 +57,9 @@
+ Source="/OrbisNeighborHood;component/Images/Consoles/Fat.png"
+ RenderOptions.BitmapScalingMode="Fant"
+ RenderOptions.EdgeMode="Aliased"/>
diff --git a/Windows/OrbisNeighborHood/Images/DefaultAppIcon.png b/Windows/OrbisNeighborHood/Images/DefaultAppIcon.png
new file mode 100644
index 0000000..a9c19ee
Binary files /dev/null and b/Windows/OrbisNeighborHood/Images/DefaultAppIcon.png differ
diff --git a/Windows/OrbisNeighborHood/Images/DefaultTitleIcon.png b/Windows/OrbisNeighborHood/Images/DefaultTitleIcon.png
new file mode 100644
index 0000000..089293a
Binary files /dev/null and b/Windows/OrbisNeighborHood/Images/DefaultTitleIcon.png differ
diff --git a/Windows/OrbisNeighborHood/MVVM/View/DashboardView.xaml b/Windows/OrbisNeighborHood/MVVM/View/DashboardView.xaml
index 69fd74e..901103d 100644
--- a/Windows/OrbisNeighborHood/MVVM/View/DashboardView.xaml
+++ b/Windows/OrbisNeighborHood/MVVM/View/DashboardView.xaml
@@ -33,7 +33,7 @@
-
+
@@ -292,19 +294,19 @@
Width="125" Height="125"
Thickness="18"
FontSize="18"
- ProgressPercentage="85"/>
+ ProgressPercentage="0"/>
@@ -312,13 +314,13 @@
@@ -326,13 +328,13 @@
@@ -389,7 +391,7 @@
-
+
-
-
-
-
-
-
+
diff --git a/Windows/OrbisNeighborHood/NeighborHood.xaml b/Windows/OrbisNeighborHood/NeighborHood.xaml
index db7d551..7de5653 100644
--- a/Windows/OrbisNeighborHood/NeighborHood.xaml
+++ b/Windows/OrbisNeighborHood/NeighborHood.xaml
@@ -9,7 +9,8 @@
mc:Ignorable="d"
Title="NeighborHood" Height="640" Width="960"
MinHeight="640" MinWidth="960"
- MaxHeight="640" MaxWidth="960">
+ MaxHeight="640" MaxWidth="960"
+ UseLayoutRounding="True">
@@ -47,7 +48,9 @@
BorderThickness="1"
BorderBrush="#333333"
Margin="8">
-
+
diff --git a/Windows/OrbisNeighborHood/OrbisNeighborHood.csproj b/Windows/OrbisNeighborHood/OrbisNeighborHood.csproj
index a11688e..04d941d 100644
--- a/Windows/OrbisNeighborHood/OrbisNeighborHood.csproj
+++ b/Windows/OrbisNeighborHood/OrbisNeighborHood.csproj
@@ -13,6 +13,8 @@
+
+
@@ -55,6 +57,12 @@
PreserveNewest
+
+ PreserveNewest
+
+
+ PreserveNewest
+
PreserveNewest