27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:u="https://irihi.tech/ursa"
|
|
xmlns:vm="clr-namespace:Flawless.Client.ViewModels.ModalBox"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:DataType="vm:IssueEditDialogViewModel"
|
|
x:Class="Flawless.Client.Views.ModalBox.IssueDetailEditView">
|
|
|
|
<u:Form>
|
|
<u:FormItem Label="Title" IsRequired="True">
|
|
<TextBox Text="{Binding Title}"/>
|
|
</u:FormItem>
|
|
<u:FormItem Label="Description">
|
|
<TextBox AcceptsReturn="True"
|
|
Text="{Binding Description}"
|
|
MinHeight="100"/>
|
|
</u:FormItem>
|
|
<u:FormItem Label="Tags">
|
|
<ComboBox ItemsSource="{Binding AvailableTags}"
|
|
SelectedItem="{Binding Tag}"/>
|
|
</u:FormItem>
|
|
</u:Form>
|
|
|
|
</UserControl>
|