WPF实现类似360安全卫士界面的程序源码分享

2019-12-26 13:39:16丽君
  • </UserControl.Resources>  <Grid Name="page"> 
  • <ContentControl Name="contentPresenter" >  <ContentControl.RenderTransform> 
  • <TransformGroup>  <ScaleTransform ScaleX="" ScaleY="" 
  • CenterX="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualWidth, Converter={StaticResource centerConverter}}"  CenterY="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualHeight, Converter={StaticResource centerConverter}}" /> 
  • <SkewTransform AngleX="" AngleY=""  CenterX="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualWidth, Converter={StaticResource centerConverter}}" 
  • CenterY="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualHeight, Converter={StaticResource centerConverter}}" />  <RotateTransform Angle="" 
  • CenterX="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualWidth, Converter={StaticResource centerConverter}}"  CenterY="{Binding RelativeSource={RelativeSource AncestorType=Grid, Mode=FindAncestor}, Path=ActualHeight, Converter={StaticResource centerConverter}}" /> 
  • <TranslateTransform X="" Y="" />  </TransformGroup> 
  • </ContentControl.RenderTransform>  </ContentControl> 
  • </Grid>  </UserControl> 
  •   using System; 
  • using System.Collections.Generic;  using System.Linq; 
  • using System.Text;  using System.Windows; 
  • using System.Windows.Controls;  using System.Windows.Data; 
  • using System.Windows.Documents;  using System.Windows.Input; 
  • using System.Windows.Media;  using System.Windows.Media.Imaging; 
  • using System.Windows.Navigation;  using System.Windows.Shapes; 
  • using System.Threading.Tasks;  using System.Windows.Media.Animation; 
  • namespace WpfPageTransitions  { 
  • public partial class PageTransition : UserControl  {