6 changed files with 69 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||
<hc:GlowWindow x:Class="齐越慧眼.SkuWindow" |
|||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|||
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:local="clr-namespace:齐越慧眼" |
|||
xmlns:hc="https://handyorg.github.io/handycontrol" |
|||
mc:Ignorable="d" Background="White" |
|||
WindowStartupLocation="CenterScreen" |
|||
ActiveGlowColor="Transparent" |
|||
Title="竞品确认" Height="180" Width="350"> |
|||
<Border Padding="20"> |
|||
<StackPanel> |
|||
<DockPanel Margin="0 20 0 0" VerticalAlignment="Center"> |
|||
<TextBlock VerticalAlignment="Center" Text="SKU:"></TextBlock> |
|||
<hc:TextBox VerticalAlignment="Center" hc:InfoElement.Placeholder="请输入我方需要对标的SKU" Text="{Binding UserName}"></hc:TextBox> |
|||
</DockPanel> |
|||
|
|||
<Button Command="{Binding _Btn_OkClick}" Style="{StaticResource ButtonPrimary}" Margin="0 20 0 20" Content="确认" Width="200" Cursor="Hand"/> |
|||
</StackPanel> |
|||
</Border> |
|||
</hc:GlowWindow> |
@ -0,0 +1,26 @@ |
|||
using HandyControl.Controls; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
using System.Windows; |
|||
using System.Windows.Controls; |
|||
using System.Windows.Data; |
|||
using System.Windows.Documents; |
|||
using System.Windows.Input; |
|||
using System.Windows.Media; |
|||
using System.Windows.Media.Imaging; |
|||
using System.Windows.Shapes; |
|||
|
|||
namespace 齐越慧眼 |
|||
{ |
|||
/// <summary>
|
|||
/// SkuWindow.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class SkuWindow : GlowWindow |
|||
{ |
|||
public SkuWindow() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue