Skip to content

Instantly share code, notes, and snippets.

@MwBakker
Created March 30, 2020 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MwBakker/ecf480b50aafa62d64ed32bb4d6c2138 to your computer and use it in GitHub Desktop.
Save MwBakker/ecf480b50aafa62d64ed32bb4d6c2138 to your computer and use it in GitHub Desktop.
<cs:CollectionView x:Class="ChipSoft.Ezis.AutomatedTesting.Views.ScriptsView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cs="http://chipsoft.com/core/presentation"
Title="{Binding Title}"
CurrentCollection="{Binding CurrentCollection}"
CurrentObject="{Binding CurrentObject}"
SelectedCollection="{Binding SelectedCollection}"
IsMultiSelect="{Binding IsMultiSelect}"
cs:ViewLayout.Id="ID" cs:ViewLayout.SubId="SUBID"
cs:Help.FileName="file.chm"
cs:Help.TopicId="12345"
ShowCollectionQueries="{Binding ShowCollectionQueries}"
InitialCollection="{Binding InitialCollection}"
MinWidth="400" MinHeight="400">
<cs:CollectionView.InputBindings>
<KeyBinding Key="Insert" Command="{Binding AddCommand}" />
<KeyBinding Modifiers="Control" Key="O" Command="{Binding CopyCommand}" />
<KeyBinding Key="Return" Command="{Binding EditCommand}" />
<KeyBinding Key="Delete" Command="{Binding DeleteCommand}" />
</cs:CollectionView.InputBindings>
<cs:FieldCollection>
<cs:Field FieldPath="Author" />
<cs:Field FieldPath="Description" />
<cs:Field FieldPath="SuccesfullyExecuted" />
</cs:FieldCollection>
</cs:CollectionView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment