コード例 #1
0
ファイル: CropControl.cs プロジェクト: rohitjha/MALClient
        private static void OnLayoutPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            CropControl crop = d as CropControl;

            if (crop != null)
            {
                crop.DoFullLayout();
            }
        }
コード例 #2
0
ファイル: CropControl.cs プロジェクト: rohitjha/MALClient
        private static void OnDesiredAspectRatioChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            CropControl crop = d as CropControl;

            if (crop != null)
            {
                crop.SetCropForDesiredAspectRatio();
            }
        }