Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit 2c2007f

Browse files
Add files via upload
1 parent be4a0ab commit 2c2007f

95 files changed

Lines changed: 31416 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

C#/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

C#/App.xaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="Qosmetics_QSaber_Fix.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:Qosmetics_QSaber_Fix"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

C#/App.xaml.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace Qosmetics_QSaber_Fix
10+
{
11+
/// <summary>
12+
/// Interaktionslogik für "App.xaml"
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}

C#/App2.png

177 KB
Loading

C#/Logo.ico

906 KB
Binary file not shown.

C#/MainWindow.xaml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<Window x:Class="Qosmetics_QSaber_Fix.MainWindow"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6+
xmlns:local="clr-namespace:Qosmetics_QSaber_Fix"
7+
mc:Ignorable="d"
8+
ResizeMode="CanMinimize"
9+
WindowStyle="None"
10+
MouseMove="Drag"
11+
Title="Quest Song Exporter" Height="235" Width="300" Background="#FF282828" >
12+
<Grid>
13+
<Grid.Background>
14+
<ImageBrush ImageSource="App2.png" Stretch="UniformToFill"/>
15+
</Grid.Background>
16+
17+
<AccessText MouseEnter="noDrag" MouseLeave="doDrag" Opacity="0.8" HorizontalAlignment="Left" Height="24.6" VerticalAlignment="Top" Width="175.333" RenderTransformOrigin="0.5,0.5" Text="Qosmetics QSaber Replacer" FontSize="14" Foreground="Black" Margin="40.2,3.843,0,0"/>
18+
<Button MouseEnter="noDrag" MouseLeave="doDrag" Click="Close" Content="X" HorizontalAlignment="Left" Margin="260,4,0,0" VerticalAlignment="Top" Width="31" Background="#00000000" BorderBrush="#FFCBCBCB"/>
19+
<Button MouseEnter="noDrag" MouseLeave="doDrag" Click="Mini" Content="|" HorizontalAlignment="Left" Margin="230,-1.533,0,0" VerticalAlignment="Top" Width="19.534" Background="#00000000" BorderBrush="#FFCBCBCB" RenderTransformOrigin="0.5,0.5" Height="31" Foreground="Black">
20+
<Button.RenderTransform>
21+
<TransformGroup>
22+
<ScaleTransform/>
23+
<SkewTransform/>
24+
<RotateTransform Angle="90"/>
25+
<TranslateTransform/>
26+
</TransformGroup>
27+
</Button.RenderTransform>
28+
</Button>
29+
<Button Click="Choose" FontFamily="lucida console" Opacity="0.9" MouseEnter="noDrag" MouseLeave="doDrag" Content="Choose QSaber" HorizontalAlignment="Left" Margin="11,200.6,0,0" VerticalAlignment="Top" Width="280" Background="#FF005654" Foreground="#FFF3F3F3" BorderBrush="#FFB94747" Height="24"/>
30+
<TextBox MouseEnter="noDrag" MouseLeave="doDrag" FontFamily="lucida console" Opacity="0.8" IsReadOnly="True" x:Name="txtbox" HorizontalAlignment="Left" Height="133.157" Margin="11,33.443,0,0" TextWrapping="Wrap" Text="Output:" VerticalAlignment="Top" Width="279" Background="#FF494949" Foreground="#FFA6A6A6" BorderBrush="#FFD30000"/>
31+
<Button Click="Start_Update" FontFamily="lucida console" MouseEnter="noDrag" MouseLeave="doDrag" x:Name="UpdateB" Content="Update" HorizontalAlignment="Left" Margin="10,171.6,0,0" VerticalAlignment="Top" Width="280" Background="#FFFF3636" Foreground="#FFE7E7E7" FontWeight="Bold" Height="24"/>
32+
</Grid>
33+
</Window>

0 commit comments

Comments
 (0)