-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e72b1bf
commit 0bb13f9
Showing
6 changed files
with
70 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<!-- | ||
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under | ||
the MIT License. See LICENSE in the project root for license information. | ||
--> | ||
<UserControl x:Class="TerminalApp.TasksPaneContent" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:SettingsModel="using:Microsoft.Terminal.Settings.Model" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:local="using:TerminalApp" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:model="using:Microsoft.Terminal.Settings.Model" | ||
xmlns:mux="using:Microsoft.UI.Xaml.Controls" | ||
AllowFocusOnInteraction="True" | ||
IsTabStop="True" | ||
TabNavigation="Cycle" | ||
mc:Ignorable="d"> | ||
|
||
<UserControl.Resources> | ||
<ResourceDictionary> | ||
<model:IconPathConverter x:Key="IconSourceConverter" /> | ||
|
||
<DataTemplate x:Key="ListItemTemplate" | ||
x:DataType="local:FilteredCommand"> | ||
<ListViewItem Height="32" | ||
MinHeight="0" | ||
Padding="16,0,12,0" | ||
HorizontalContentAlignment="Stretch" | ||
AutomationProperties.AcceleratorKey="{x:Bind Item.KeyChordText, Mode=OneWay}" | ||
AutomationProperties.Name="{x:Bind Item.Name, Mode=OneWay}" | ||
FontSize="12" /> | ||
</DataTemplate> | ||
</ResourceDictionary> | ||
</UserControl.Resources> | ||
|
||
<StackPanel Orientation="Horizontal"> | ||
<TextBlock x:Name="_title" | ||
Text="Tasks" /> | ||
<mux:TreeView x:Name="_treeView" /> | ||
</StackPanel> | ||
|
||
</UserControl> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters