mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
CompilerView: Added missing image file picker
This commit is contained in:
parent
86330081f3
commit
a19832b553
@ -83,6 +83,9 @@
|
|||||||
<Setter Property="FontSize" Value="15" />
|
<Setter Property="FontSize" Value="15" />
|
||||||
<Setter Property="Margin" Value="0,0,0,6" />
|
<Setter Property="Margin" Value="0,0,0,6" />
|
||||||
</Style>
|
</Style>
|
||||||
|
<Style x:Key="PickerStyle" TargetType="local:FilePicker">
|
||||||
|
<Setter Property="Margin" Value="0,0,0,6" />
|
||||||
|
</Style>
|
||||||
</StackPanel.Resources>
|
</StackPanel.Resources>
|
||||||
<TextBlock Margin="{StaticResource TitleMargin}" Text="ModList Name" />
|
<TextBlock Margin="{StaticResource TitleMargin}" Text="ModList Name" />
|
||||||
<TextBox Style="{StaticResource ValueStyle}" Text="{Binding ModListName, UpdateSourceTrigger=PropertyChanged}" />
|
<TextBox Style="{StaticResource ValueStyle}" Text="{Binding ModListName, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
@ -98,13 +101,21 @@
|
|||||||
Style="{StaticResource ValueStyle}"
|
Style="{StaticResource ValueStyle}"
|
||||||
Text="{Binding Description, UpdateSourceTrigger=PropertyChanged}"
|
Text="{Binding Description, UpdateSourceTrigger=PropertyChanged}"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
|
<TextBlock Margin="{StaticResource TitleMargin}" Text="Image" />
|
||||||
|
<local:FilePicker
|
||||||
|
DataContext="{Binding ImagePath}"
|
||||||
|
Style="{StaticResource PickerStyle}"
|
||||||
|
ToolTip="Path to an image to display for the modlist." />
|
||||||
<TextBlock Margin="{StaticResource TitleMargin}" Text="Website" />
|
<TextBlock Margin="{StaticResource TitleMargin}" Text="Website" />
|
||||||
<TextBox Style="{StaticResource ValueStyle}" Text="{Binding Website}" />
|
<TextBox Style="{StaticResource ValueStyle}" Text="{Binding Website}" />
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Margin="{StaticResource TitleMargin}"
|
Margin="{StaticResource TitleMargin}"
|
||||||
Text="Readme Path"
|
Text="Readme Path"
|
||||||
ToolTip="Path to a readme file." />
|
ToolTip="Path to a readme file." />
|
||||||
<local:FilePicker DataContext="{Binding ReadMeText}" ToolTip="Path to a readme file." />
|
<local:FilePicker
|
||||||
|
DataContext="{Binding ReadMeText}"
|
||||||
|
Style="{StaticResource PickerStyle}"
|
||||||
|
ToolTip="Path to a readme file." />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
<Rectangle
|
<Rectangle
|
||||||
|
Loading…
Reference in New Issue
Block a user