mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 13:05:38 +02:00
2. Abstracting processor and winapi logic into common dll and entry points into separate dlls 3. Adding icons 4. Switching build platform to AnyCPU. Seems to work on x64, don't have a x86 platform to test on
13 lines
669 B
XML
13 lines
669 B
XML
<Window x:Class="Ninjacrab.PersistentWindows.WpfShell.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Ninjacrab.PersistentWindows.WpfShell"
|
|
Title="MainWindow" Height="350" Width="525" Icon="/PersistentWindows;component/Oxygen-Icons.org-Oxygen-Status-media-playlist-repeat.ico">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="239*"/>
|
|
<ColumnDefinition Width="278*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<local:DiagnosticsView Grid.ColumnSpan="2" />
|
|
</Grid>
|
|
</Window>
|