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