Skip to content

Commit 1594ac6

Browse files
committed
Add project files.
1 parent c12f820 commit 1594ac6

10 files changed

+1614
-0
lines changed

App.xaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="ooze.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:ooze"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

App.xaml.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System.ComponentModel;
2+
using System.Configuration;
3+
using System.Data;
4+
using System.Windows;
5+
6+
namespace ooze
7+
{
8+
/// <summary>
9+
/// Interaction logic for App.xaml
10+
/// </summary>
11+
public partial class App : Application
12+
{
13+
static public class yes
14+
{
15+
public static void test(string s)
16+
{
17+
s = s;
18+
}
19+
}
20+
}
21+
22+
}

AssemblyInfo.cs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Windows;
2+
3+
[assembly: ThemeInfo(
4+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
5+
//(used if a resource is not found in the page,
6+
// or application resource dictionaries)
7+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
8+
//(used if a resource is not found in the page,
9+
// app, or any theme specific resource dictionaries)
10+
)]

MainWindow.xaml

+420
Large diffs are not rendered by default.

MainWindow.xaml.cs

+1,105
Large diffs are not rendered by default.

background.jpg

975 KB
Loading

bahnschrift.ttf

331 KB
Binary file not shown.

ooze.csproj

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net6.0-windows</TargetFramework>
6+
<Nullable>enable</Nullable>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<UseWPF>true</UseWPF>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<None Remove="background.jpg" />
13+
<None Remove="bahnschrift.ttf" />
14+
<None Remove="ooze_icon.ico" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<Resource Include="background.jpg" />
19+
<Resource Include="bahnschrift.ttf" />
20+
<Resource Include="ooze_icon.ico" />
21+
</ItemGroup>
22+
23+
</Project>

ooze.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.11.35327.3
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ooze", "ooze.csproj", "{DC2CA43C-6A84-4C8C-A452-06B293075411}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DC2CA43C-6A84-4C8C-A452-06B293075411}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{DC2CA43C-6A84-4C8C-A452-06B293075411}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{DC2CA43C-6A84-4C8C-A452-06B293075411}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{DC2CA43C-6A84-4C8C-A452-06B293075411}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {D00245BF-3AAE-429F-A4F8-FAB594D63CF4}
24+
EndGlobalSection
25+
EndGlobal

ooze_icon.ico

138 KB
Binary file not shown.

0 commit comments

Comments
 (0)