當前位置: 首頁>>代碼示例>>C#>>正文


C# WriteableBitmap.RenderColorPickerSaturationValueRect方法代碼示例

本文整理匯總了C#中Windows.UI.Xaml.Media.Imaging.WriteableBitmap.RenderColorPickerSaturationValueRect方法的典型用法代碼示例。如果您正苦於以下問題:C# WriteableBitmap.RenderColorPickerSaturationValueRect方法的具體用法?C# WriteableBitmap.RenderColorPickerSaturationValueRect怎麽用?C# WriteableBitmap.RenderColorPickerSaturationValueRect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Windows.UI.Xaml.Media.Imaging.WriteableBitmap的用法示例。


在下文中一共展示了WriteableBitmap.RenderColorPickerSaturationValueRect方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ImagingTestPage_Loaded

        private async void ImagingTestPage_Loaded(object sender, RoutedEventArgs e)
        {
            var hueLightnessBitmap = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => hueLightnessBitmap.RenderColorPickerHueLightness(1.0));
            hueLightnessImage.Source = hueLightnessBitmap;
            var hueLightnessBitmap2 = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => hueLightnessBitmap2.RenderColorPickerHueLightness(0.5));
            hueLightnessImage2.Source = hueLightnessBitmap2;
            var hueRingBitmap = new WriteableBitmap(512,512);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => hueRingBitmap.RenderColorPickerHueRing());
            hueRingImage.Source = hueRingBitmap;
            hueRingImage2.Source = hueRingBitmap;

            var saturationLightnessBitmap = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => saturationLightnessBitmap.RenderColorPickerSaturationLightnessRect());
            saturationLightnessImage.Source = saturationLightnessBitmap;

            var hueValueBitmap = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => hueValueBitmap.RenderColorPickerHueValue(1.0));
            hueValueImage.Source = hueValueBitmap;
            var hueValueBitmap2 = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => hueValueBitmap2.RenderColorPickerHueValue(0.5));
            hueValueImage2.Source = hueValueBitmap2;

            var saturationValueBitmap = new WriteableBitmap(512, 128);
            await Dispatcher.RunAsync(
                CoreDispatcherPriority.High,
                () => saturationValueBitmap.RenderColorPickerSaturationValueRect());
            saturationValueImage.Source = saturationValueBitmap;
        }
開發者ID:siatwangmin,項目名稱:WinRTXamlToolkit,代碼行數:42,代碼來源:ImagingTestView.xaml.cs


注:本文中的Windows.UI.Xaml.Media.Imaging.WriteableBitmap.RenderColorPickerSaturationValueRect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。