FimExplorer/src/UI.WPF/Import/ImportedObjectsWindow.xaml

13 lines
481 B
XML

<Window x:Class="Predica.FimExplorer.UI.WPF.Import.ImportedObjectsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Imported objects" Height="300" Width="686">
<Grid>
<DataGrid
IsReadOnly="True"
ItemsSource="{Binding ImportedValues}"
AutoGeneratingColumn="DataGrid_AutoGeneratingColumn"
/>
</Grid>
</Window>