Guest User

Untitled

a guest
Jan 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <DataGrid AutoGenerateColumns="True" Height="80" Margin="2,-4,8,0" Name="grdQHDRShowAll" VerticalAlignment="Top" ItemsSource="{Binding}" IsReadOnly="True" SelectionChanged="grdQHDRShowAll_SelectionChanged">
  2. <DataGrid.Columns>
  3.  
  4. <DataGridTemplateColumn>
  5. <DataGridTemplateColumn.CellTemplate>
  6. <DataTemplate>
  7. <Button Click="Qhdr_CreateOrder_Click" CommandParameter="{Binding Path=QuoteNo}" >Create Order</Button>
  8. </DataTemplate>
  9. </DataGridTemplateColumn.CellTemplate>
  10. </DataGridTemplateColumn>
  11. </DataGrid.Columns>
  12. </DataGrid>
  13.  
  14. <Button IsEnabled="{Binding Path=BoolProp}"/>
  15.  
  16. <Button IsEnabled="{Binding ElementName=CellName, Path=BoolProp}"/>
  17.  
  18. <Button Content="Approve" VerticalAlignment="Center" Height="23" Width="90" FontWeight="Bold" Command="{Binding ApprovedCommand}" Margin="5,0,0,0" IsEnabled="{Binding IsEnabled,Mode=TwoWay}"/>
Add Comment
Please, Sign In to add comment