66 lines
3.6 KiB
XML
66 lines
3.6 KiB
XML
<Window x:Class="YY.Admin.Views.Print.PrintBizTemplateBindDetailWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
Title="业务打印绑定详情"
|
|
Width="760" Height="580"
|
|
WindowStartupLocation="CenterOwner"
|
|
ResizeMode="CanResize">
|
|
<DockPanel Margin="16">
|
|
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0 12 0 0">
|
|
<TextBlock x:Name="TxtMeta" Foreground="#666" VerticalAlignment="Center" Margin="0 0 16 0"/>
|
|
<Button Content="关闭" Width="88" Height="32" IsCancel="True" IsDefault="True" Click="OnCloseClick"/>
|
|
</StackPanel>
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
|
<StackPanel>
|
|
<hc:Row Margin="0 0 0 8">
|
|
<hc:Col Span="12">
|
|
<hc:TextBox x:Name="TxtId" hc:InfoElement.Title="主键" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
</hc:Row>
|
|
<hc:Row Margin="0 0 0 8">
|
|
<hc:Col Layout="{hc:ColLayout Xs=12, Md=6}">
|
|
<hc:TextBox x:Name="TxtBizCode" hc:InfoElement.Title="业务编码" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
<hc:Col Layout="{hc:ColLayout Xs=12, Md=6}">
|
|
<hc:TextBox x:Name="TxtBizName" hc:InfoElement.Title="业务名称" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
</hc:Row>
|
|
<hc:Row Margin="0 0 0 8">
|
|
<hc:Col Layout="{hc:ColLayout Xs=12, Md=6}">
|
|
<hc:TextBox x:Name="TxtTemplateId" hc:InfoElement.Title="模板Id" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
<hc:Col Layout="{hc:ColLayout Xs=12, Md=6}">
|
|
<hc:TextBox x:Name="TxtTemplateCode" hc:InfoElement.Title="模板编码" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
</hc:Row>
|
|
<hc:Row Margin="0 0 0 12">
|
|
<hc:Col Span="12">
|
|
<hc:TextBox x:Name="TxtRemark" hc:InfoElement.Title="备注" hc:InfoElement.TitlePlacement="Left" hc:InfoElement.TitleWidth="80"
|
|
IsReadOnly="True"/>
|
|
</hc:Col>
|
|
</hc:Row>
|
|
|
|
<GroupBox Header="字段映射 JSON">
|
|
<TextBox x:Name="TxtMappingJson"
|
|
MinHeight="260"
|
|
AcceptsReturn="True"
|
|
TextWrapping="Wrap"
|
|
VerticalScrollBarVisibility="Auto"
|
|
HorizontalScrollBarVisibility="Auto"
|
|
FontFamily="Consolas"
|
|
FontSize="12"
|
|
IsReadOnly="True"
|
|
BorderThickness="0"/>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</DockPanel>
|
|
</Window>
|