mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
20 lines
796 B
Plaintext
20 lines
796 B
Plaintext
|
<UserControl
|
||
|
x:Class="FileLocksmithGUI.ProcessEntry"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:FileLocksmithGUI"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="300"
|
||
|
d:DesignWidth="400">
|
||
|
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<BitmapIcon Name="processIcon"></BitmapIcon>
|
||
|
<StackPanel Orientation="Vertical">
|
||
|
<TextBlock FontSize="24" Name="processName">Process name</TextBlock>
|
||
|
<TextBlock FontSize="10" Name="processPid">Process pid</TextBlock>
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</UserControl>
|