123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <fw:NChildWindow x:Class="Com.FirmLib.UI.Seller.WinSellerProjectInfo"
- 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:fw="http://schemas.FWind/xaml"
- xmlns:wpf="clr-namespace:FWindSoft.Wpf;assembly=FWindSoft.Wpf"
- xmlns:uc="clr-namespace:Com.FirmLib.UI.Common"
- xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
- xmlns:behaviors="clr-namespace:FWindSoft.Wpf.Behaviors;assembly=FWindSoft.Wpf"
- xmlns:ui="clr-namespace:Com.FirmLib.UI"
- mc:Ignorable="d"
- d:DesignHeight="300" d:DesignWidth="500" Name="this" Height="{Binding Height,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=UIElement}}"
- Width="{Binding Width,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=UIElement}}">
- <fw:NChildWindow.Resources>
- <wpf:BindingProxy x:Key="DATA" Data="{Binding}"></wpf:BindingProxy>
- </fw:NChildWindow.Resources>
- <fw:NChildWindow.AttachElement>
- <StackPanel HorizontalAlignment="Stretch" Orientation="Horizontal" VerticalAlignment="Center">
- <Button Command="{Binding Data.Commands.SaveCommand,Source={StaticResource ResourceKey=DATA}}" Style="{StaticResource ResourceKey={x:Static uc:CommonStyles.ButtonKey}}" BorderThickness="0" FontFamily="{DynamicResource ResourceKey={x:Static wpf:FontsUtil.AwesomeKey}}">
- <Button.Content>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{wpf:FontIcon Icon=Save}" Width="30" FontSize="20"></TextBlock>
- <TextBlock Text="保存" VerticalAlignment="Center" Margin="-5,0,0,0"></TextBlock>
- </StackPanel>
- </Button.Content>
- </Button>
- </StackPanel>
- </fw:NChildWindow.AttachElement>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="150"></ColumnDefinition>
- <ColumnDefinition Width="Auto"></ColumnDefinition>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch">
- <Label Content="{Binding SellerName}" Margin="5,0,0,0"></Label>
- <Label Content="{Binding SellerUrl}" Margin="5,0,0,0"></Label>
- <fw:LineSpliter Margin="5,0,5,0" VerticalAlignment="Center" ></fw:LineSpliter>
- <ui:ContactInformationEditor DataContext="{Binding ContactItem}" HorizontalAlignment="Stretch" ></ui:ContactInformationEditor>
- </StackPanel>
- <GridSplitter Grid.Row="0" Grid.Column="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" BorderThickness="1" BorderBrush="White"></GridSplitter>
- <GroupBox Grid.Row="0" Grid.Column="2" Margin="-5,0,-5,0" Header="该厂家供应的项目资产清单" Style="{StaticResource ResourceKey={x:Static uc:CommonStyles.GroupBoxKey}}" >
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"></RowDefinition>
- <RowDefinition></RowDefinition>
-
- </Grid.RowDefinitions>
- <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
- <Button Command="{Binding Commands.AddSupplyContract}" Style="{StaticResource ResourceKey={x:Static uc:CommonStyles.ButtonKey}}" Height="23" Margin="5" Content="添加供应合同" />
- </StackPanel>
- <DataGrid fw:DataGridDragCopyOptions.CanDragCopy="True" Grid.Row="1" AutoGenerateColumns="False" FrozenColumnCount="1" ItemsSource="{Binding AssetItems,UpdateSourceTrigger=PropertyChanged}"
- CanUserAddRows="False"
- CanUserDeleteRows="False"
- VerticalScrollBarVisibility="Auto"
- HorizontalScrollBarVisibility="Auto"
- SelectionUnit="Cell"
- HeadersVisibility="Column"
- CanUserSortColumns="False"
- CellStyle="{StaticResource ResourceKey={x:Static uc:CommonStyles.DataGridCellKey}}"
- AlternationCount="2"
- >
- <DataGrid.RowStyle>
- <Style TargetType="DataGridRow" BasedOn="{StaticResource ResourceKey={x:Type DataGridRow}}">
- <Setter Property="ContextMenu">
- <Setter.Value>
- <ContextMenu>
- <MenuItem Header="从供应清单中删除该资产" Command="{Binding Data.Commands.DeleteCommand,Source={StaticResource ResourceKey=DATA}}" CommandParameter="{Binding }"></MenuItem>
- </ContextMenu>
- </Setter.Value>
- </Setter>
- <Setter Property="Height" Value="30"></Setter>
- <Style.Triggers>
- <Trigger Property="ItemsControl.AlternationIndex"
- Value="0">
- <Setter Property="Background" Value="White" />
- </Trigger>
- <Trigger Property="ItemsControl.AlternationIndex"
- Value="1">
- <Setter Property="Background" Value="#FFE6E3DD" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </DataGrid.RowStyle>
- <DataGrid.Columns>
- <DataGridTemplateColumn Header="操作" Width="100" IsReadOnly="True" >
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Button Command="{Binding Data.Commands.ScanAssetInfo,Source={StaticResource ResourceKey=DATA} }" CommandParameter="{Binding}" Style="{StaticResource ResourceKey={x:Static uc:CommonStyles.LinkButtonKey}}" HorizontalAlignment="Left" Content="查看资产详情" Padding="5,0,5,0"/>
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <fw:TDataGridTextColumn Header="本地名称" Width="100" IsReadOnly="True" Binding="{Binding Path=LocalName}"></fw:TDataGridTextColumn>
- <fw:TDataGridTextColumn Header="本地编码" Width="80" IsReadOnly="True" Binding="{Binding Path=LocalCode}"></fw:TDataGridTextColumn>
- <fw:TDataGridTextColumn Header="资产编号" Width="80" IsReadOnly="True" Binding="{Binding Path=AssetNo}"></fw:TDataGridTextColumn>
- <fw:TDataGridTextColumn Header="品牌" Width="80" IsReadOnly="True" Binding="{Binding Path=Brand}"></fw:TDataGridTextColumn>
- <fw:TDataGridTextColumn Header="产品名" Width="80" IsReadOnly="True" Binding="{Binding Path=Product}"></fw:TDataGridTextColumn>
- <fw:TDataGridTextColumn Header="型号" Width="80" IsReadOnly="True" Binding="{Binding Path=Type}"></fw:TDataGridTextColumn>
-
- <DataGridTemplateColumn Header="采购价格" Width="80" fw:DataGridDragCopyOptions.CanColumnDragCopy="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=ProcurementPrice,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <TextBlock Text="{Binding Path=ProcurementPrice}" VerticalAlignment="Center" ></TextBlock>
- </Border>
-
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=ProcurementPrice,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" >
- <fw:DescriptionDecorator Description="元" Background="Black">
- <fw:TTextBox Text="{Binding ProcurementPrice, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0">
- <fw:TTextBox.TextControl>
- <fw:AccessPlusDecimal></fw:AccessPlusDecimal>
- </fw:TTextBox.TextControl>
- </fw:TTextBox>
- </fw:DescriptionDecorator>
- </Border>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- <DataGridTemplateColumn Header="保修期" Width="80" fw:DataGridDragCopyOptions.CanColumnDragCopy="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=Warranty,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <TextBlock Text="{Binding Path=Warranty}" VerticalAlignment="Center" ></TextBlock>
- </Border>
-
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=Warranty,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <fw:DescriptionDecorator Description="天" Background="Black">
- <fw:TTextBox Text="{Binding Warranty, UpdateSourceTrigger=PropertyChanged}" BorderThickness="0">
- <fw:TTextBox.TextControl>
- <fw:AccessPlusDecimal></fw:AccessPlusDecimal>
- </fw:TTextBox.TextControl>
- </fw:TTextBox>
- </fw:DescriptionDecorator>
- </Border>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- <DataGridTemplateColumn Header="生产日期" Width="120" fw:DataGridDragCopyOptions.CanColumnDragCopy="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=ProductionDate,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <TextBlock Text="{Binding Path=ProductionDate,Converter={x:Static wpf:DateTimeConverter.Date},StringFormat=yyyy年MM月dd日}" VerticalAlignment="Center"></TextBlock>
- </Border>
-
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <DatePicker fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=ProductionDate,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}" SelectedDate="{Binding Path=ProductionDate,Converter={x:Static wpf:DateTimeConverter.Date}}" VerticalAlignment="Center"></DatePicker>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- <fw:TDataGridTextColumn Header="出厂编号" Width="80" IsReadOnly="True" Binding="{Binding Path=ManufacturingNo}"></fw:TDataGridTextColumn>
-
- <DataGridTemplateColumn Header="所属供应合同编号" Width="80" fw:DataGridDragCopyOptions.CanColumnDragCopy="True">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Border fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=SellerContractNo,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <TextBlock Text="{Binding Path=SellerContractNo}" VerticalAlignment="Center"></TextBlock>
- </Border>
-
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- <DataGridTemplateColumn.CellEditingTemplate>
- <DataTemplate>
- <Grid fw:ElementCopyOptions.UseCopy="True" fw:ElementCopyOptions.CopyValue="{Binding Path=SellerContractNo,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}">
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- <ColumnDefinition Width="30"></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <TextBox IsReadOnly="True" Text="{Binding Path=SellerContractNo}" VerticalContentAlignment="Center"></TextBox>
- <Button Grid.Column="1" Command="{Binding Data.Commands.SelectContractCommand,Source={StaticResource ResourceKey=DATA} }" CommandParameter="{Binding}" Style="{StaticResource ResourceKey={x:Static uc:CommonStyles.ButtonKey}}" Content="…" Padding="5"/>
- </Grid>
- </DataTemplate>
- </DataGridTemplateColumn.CellEditingTemplate>
- </DataGridTemplateColumn>
- </DataGrid.Columns>
- <i:Interaction.Behaviors>
- <behaviors:GridCellSingleClickEditBehavior></behaviors:GridCellSingleClickEditBehavior>
- </i:Interaction.Behaviors>
- </DataGrid>
- </Grid>
-
-
- </GroupBox>
- </Grid>
- </fw:NChildWindow>
|