6 changed files with 127 additions and 1 deletions
@ -0,0 +1,53 @@ |
|||
<Page x:Class="BBWY.Client.Views.Setting.ShopSetting" |
|||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|||
xmlns:local="clr-namespace:BBWY.Client.Views.Setting" |
|||
xmlns:b="clr-namespace:BBWY.Controls;assembly=BBWY.Controls" |
|||
mc:Ignorable="d" |
|||
d:DesignHeight="450" d:DesignWidth="800" |
|||
Title="ShopSetting"> |
|||
<Page.Resources> |
|||
<Style x:Key="textblockPropertyStyle" TargetType="TextBlock"> |
|||
<Setter Property="HorizontalAlignment" Value="Right"/> |
|||
<Setter Property="VerticalAlignment" Value="Center"/> |
|||
<Setter Property="Margin" Value="0,0,5,0"/> |
|||
</Style> |
|||
<Style x:Key="textboxValueStyle" TargetType="{x:Type b:BTextBox}"> |
|||
<Setter Property="Width" Value="150"/> |
|||
<Setter Property="HorizontalAlignment" Value="Left"/> |
|||
<Setter Property="Height" Value="30"/> |
|||
<Setter Property="Background" Value="White"/> |
|||
<Setter Property="BorderBrush" Value="{StaticResource TextBox.BorderBrush}"/> |
|||
</Style> |
|||
</Page.Resources> |
|||
<Grid> |
|||
<Grid Margin="5,0" ShowGridLines="True"> |
|||
<Grid.ColumnDefinitions> |
|||
<ColumnDefinition Width="100"/> |
|||
<ColumnDefinition/> |
|||
</Grid.ColumnDefinitions> |
|||
<Grid.RowDefinitions> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition Height="40"/> |
|||
<RowDefinition/> |
|||
<RowDefinition Height="50"/> |
|||
</Grid.RowDefinitions> |
|||
|
|||
<TextBlock Text="管理密码" Style="{StaticResource textblockPropertyStyle}"/> |
|||
<b:BTextBox Grid.Column="1" Style="{StaticResource textboxValueStyle}"/> |
|||
|
|||
<TextBlock Text="平台扣点" Style="{StaticResource textblockPropertyStyle}" Grid.Row="1"/> |
|||
<b:BTextBox Grid.Column="1" Style="{StaticResource textboxValueStyle}" Grid.Row="1"/> |
|||
|
|||
<TextBlock Text="采购平台" Style="{StaticResource textblockPropertyStyle}" Grid.Row="2"/> |
|||
</Grid> |
|||
</Grid> |
|||
</Page> |
@ -0,0 +1,26 @@ |
|||
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.Navigation; |
|||
using System.Windows.Shapes; |
|||
|
|||
namespace BBWY.Client.Views.Setting |
|||
{ |
|||
/// <summary>
|
|||
/// ShopSetting.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class ShopSetting : Page |
|||
{ |
|||
public ShopSetting() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,14 @@ |
|||
<Page x:Class="BBWY.Client.Views.Setting.TeamSetting" |
|||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|||
xmlns:local="clr-namespace:BBWY.Client.Views.Setting" |
|||
mc:Ignorable="d" |
|||
d:DesignHeight="450" d:DesignWidth="800" |
|||
Title="TeamSetting"> |
|||
|
|||
<Grid> |
|||
|
|||
</Grid> |
|||
</Page> |
@ -0,0 +1,26 @@ |
|||
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.Navigation; |
|||
using System.Windows.Shapes; |
|||
|
|||
namespace BBWY.Client.Views.Setting |
|||
{ |
|||
/// <summary>
|
|||
/// TeamSetting.xaml 的交互逻辑
|
|||
/// </summary>
|
|||
public partial class TeamSetting : Page |
|||
{ |
|||
public TeamSetting() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue