Skip to content

Commit

Permalink
feat: add export views
Browse files Browse the repository at this point in the history
  • Loading branch information
sandre58 committed May 21, 2024
1 parent 1d1b645 commit 19b899e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/MyNet.Wpf.Presentation/MyNet.Wpf.Presentation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Description>A comprehensive collection of controls, graphical elements, and views designed for accelerating WPF application development.</Description>
<PackageTags>MyNet;UI;Xaml;Presentation;Wpf</PackageTags>
<VersionPrefix>2.1.0</VersionPrefix>
<VersionPrefix>2.2.0-alpha</VersionPrefix>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions src/MyNet.Wpf.Presentation/Views/Export/ExportView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
</my:SimpleStackPanel>
</Grid>
<ListView Grid.Row="4"
dd:DragDrop.DropHandler="{Binding DropHandler}"
dd:DragDrop.IsDragSource="True"
dd:DragDrop.IsDropTarget="True"
dd:DragDrop.UseDefaultDragAdorner="True"
Expand Down Expand Up @@ -133,7 +132,7 @@
<GridViewColumn my:GridViewColumnAssist.Width="*" Header="{my:Resource ColumnHeader}">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock x:Name="text" Text="{Binding Item.DisplayName.Value}" />
<TextBlock x:Name="text" Text="{Binding Item.Value}" />
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding IsSelected}" Value="False">
<Setter TargetName="text" Property="Opacity" Value="{StaticResource MyNet.Opacity.Secondary}" />
Expand Down
2 changes: 1 addition & 1 deletion src/MyNet.Wpf/MyNet.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="MaterialDesignThemes" Version="5.0.1-ci633" />
<PackageReference Include="MyNet.Humanizer" Version="1.0.0" />
<PackageReference Include="MyNet.Observable" Version="1.2.0" />
<PackageReference Include="MyNet.UI" Version="3.0.0" />
<PackageReference Include="MyNet.UI" Version="3.1.0-alpha.2" />
<PackageReference Include="MyNet.Xaml.Html" Version="1.0.0" />
<PackageReference Include="MyNet.Xaml.Merger.MSBuild" Version="2.0.1">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 19b899e

Please sign in to comment.