PowerToys/tools/HandlesExperiment/FileLocksmithGUI/ProcessEntry.xaml

20 lines
796 B
Plaintext
Raw Normal View History

2022-09-15 20:21:09 +08:00
<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>