53 lines
2.3 KiB
XML
53 lines
2.3 KiB
XML
<ResourceDictionary
|
|
x:Class="BeWo.Styles.DataTemplates.DataTemplates"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:conv="clr-namespace:BeWo.Converter"
|
|
xmlns:vm="clr-namespace:BeWo.ViewModel"
|
|
x:ClassModifier="public">
|
|
|
|
<HierarchicalDataTemplate
|
|
x:Key="ai_promptbaustein_folder_itemtemplate"
|
|
DataType="{x:Type vm:AiPromptbausteinFolderVM}"
|
|
ItemsSource="{Binding Path=SubFolders.VMList}">
|
|
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<TextBox
|
|
Height="21"
|
|
Margin="0,0,0,0"
|
|
Padding="0,3,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
Cursor="Arrow"
|
|
Focusable="False"
|
|
FontWeight="{Binding FontWeight}"
|
|
IsReadOnly="True"
|
|
Text="{Binding Path=Displayname, UpdateSourceTrigger=PropertyChanged, Mode=OneWay}"
|
|
ToolTipService.ShowDuration="100000">
|
|
<TextBox.ToolTip>
|
|
<StackPanel Orientation="Vertical">
|
|
<Label Content="{Binding Path=Title, Mode=OneWay}" FontWeight="Bold" />
|
|
<TextBox
|
|
MaxWidth="500"
|
|
Padding="3,1,0,0"
|
|
VerticalAlignment="Center"
|
|
AcceptsReturn="True"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
IsReadOnly="True"
|
|
Text="{Binding Path=Description}"
|
|
TextWrapping="Wrap" />
|
|
</StackPanel>
|
|
</TextBox.ToolTip>
|
|
</TextBox>
|
|
</Grid>
|
|
</HierarchicalDataTemplate>
|
|
</ResourceDictionary> |