mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
* WIP Hosts - remove deps * Add consumer app * Move App and MainWindow to Consumer app. Make Hosts dll * Try consume it * Fix errors * Make it work with custom build targets * Dependency injection Refactor Explicit page creation Wire missing dependencies * Fix installer * Remove unneeded stuff * Fix build again * Extract UI and logic from MainWindow to RegistryPreviewMainPage * Convert to lib Change namespace to RegistryPreviewUILib Remove PT deps * Add exe app and move App.xaml and MainWindow.xaml * Consume the lib * Update Hosts package creation * Fix RegistryPreview package creation * Rename RegistryPreviewUI back to RegistryPreview * Back to consuming lib * Ship icons and assets in nuget packages * Rename to EnvironmentVariablesUILib and convert to lib * Add app and consume * Telemetry * GPO * nuget * Rename HostsPackageConsumer to Hosts and Hosts lib to HostsUILib * Assets cleanup * nuget struct * v0 * assets * [Hosts] Re-add AppList to Lib Assets, [RegPrev] Copy lib assets to out dir * Sign UI dlls * Revert WinUIEx bump * Cleanup * Align deps * version exception dll * Fix RegistryPreview crashes * XAML format * XAML format 2 * Pack .pri files in lib/ dir --------- Co-authored-by: Darshak Bhatti <dabhatti@microsoft.com>
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
<winuiex:WindowEx
|
|
x:Class="RegistryPreview.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:tk7controls="using:CommunityToolkit.WinUI.UI.Controls"
|
|
xmlns:tkcontrols="using:CommunityToolkit.WinUI.Controls"
|
|
xmlns:ui="using:CommunityToolkit.WinUI"
|
|
xmlns:winuiex="using:WinUIEx"
|
|
MinWidth="480"
|
|
MinHeight="320"
|
|
Closed="Window_Closed"
|
|
mc:Ignorable="d">
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
|
|
<Grid x:Name="MainGrid" Loaded="Grid_Loaded">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid
|
|
x:Name="titleBar"
|
|
Grid.Row="0"
|
|
Height="32"
|
|
Margin="16,0"
|
|
ColumnSpacing="16"
|
|
IsHitTestVisible="True">
|
|
<Grid.ColumnDefinitions>
|
|
<!--<ColumnDefinition x:Name="LeftPaddingColumn" Width="0"/>-->
|
|
<ColumnDefinition x:Name="IconColumn" Width="Auto" />
|
|
<ColumnDefinition x:Name="TitleColumn" Width="Auto" />
|
|
<!--<ColumnDefinition x:Name="RightPaddingColumn" Width="0"/>-->
|
|
</Grid.ColumnDefinitions>
|
|
<Image
|
|
Grid.Column="0"
|
|
Width="16"
|
|
Height="16"
|
|
VerticalAlignment="Center"
|
|
Source="../Assets/RegistryPreview/RegistryPreview.ico" />
|
|
<TextBlock
|
|
x:Name="titleBarText"
|
|
Grid.Column="1"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource CaptionTextBlockStyle}"
|
|
Text="{Binding ApplicationTitle}" />
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</winuiex:WindowEx>
|