App.xaml 769 B

1234567891011
  1. <Application x:Class="PDFViewer.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:cpdfcommon="clr-namespace:Compdfkit_Tools.Common;assembly=Compdfkit_Tools"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <cpdfcommon:WindowStateToThicknessConverter x:Key="WindowStateToThicknessConverter"></cpdfcommon:WindowStateToThicknessConverter>
  8. <cpdfcommon:CaptionHeightConverter x:Key="CaptionHeightConverter"></cpdfcommon:CaptionHeightConverter>
  9. <cpdfcommon:WindowStateToPathConverter x:Key="WindowStateToPathConverter"></cpdfcommon:WindowStateToPathConverter>
  10. </Application.Resources>
  11. </Application>