Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TK50P authored Jun 14, 2024
1 parent 04253cf commit 654dad6
Show file tree
Hide file tree
Showing 27 changed files with 1,463 additions and 0 deletions.
25 changes: 25 additions & 0 deletions NoMoreDWM.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.34931.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoMoreDWM", "NoMoreDWM\NoMoreDWM.csproj", "{4DA82524-D71B-4045-BD26-6740262DADF7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4DA82524-D71B-4045-BD26-6740262DADF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4DA82524-D71B-4045-BD26-6740262DADF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DA82524-D71B-4045-BD26-6740262DADF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DA82524-D71B-4045-BD26-6740262DADF7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3F37ED43-FAFD-4832-90E6-CD50D24D3D9D}
EndGlobalSection
EndGlobal
9 changes: 9 additions & 0 deletions NoMoreDWM/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Application x:Class="NoMoreDWM.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:NoMoreDWM"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
16 changes: 16 additions & 0 deletions NoMoreDWM/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;

namespace NoMoreDWM
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
50 changes: 50 additions & 0 deletions NoMoreDWM/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<Window x:Class="NoMoreDWM.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="NoMoreDWM" Height="576" Width="1024">
<Grid>
<TextBlock Text="NoMoreDWM – A simple program to disable Desktop Window Manager"
FontSize="16" FontWeight="Bold"
HorizontalAlignment="Center"
VerticalAlignment="Top"
Margin="0,20,0,0" />

<Button x:Name="btnDisableDWM"
Content="Disable DWM"
FontSize="20"
FontWeight="Bold"
Width="300"
Height="50"
Background="Black"
Foreground="White"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0,-50,0,0"
Click="DisableDWM_Click"/>

<Button x:Name="btnEnableDWM"
Content="Enable DWM"
FontSize="20"
FontWeight="Bold"
Width="300"
Height="50"
Background="Black"
Foreground="White"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0,50,0,0"
Click="EnableDWM_Click"/>

<TextBlock Text="Version 1.0"
FontSize="12"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Margin="10,0,0,10" />

<TextBlock Text="Programmed by TK50P"
FontSize="12"
HorizontalAlignment="Right"
VerticalAlignment="Bottom"
Margin="0,0,10,10" />
</Grid>
</Window>
Loading

0 comments on commit 654dad6

Please sign in to comment.