CommunityToolkit.WinUI.Controls.ColorPicker Bug on IsColorSpectrumVisible

オープン
#701 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
3/5
見積もり時間
1〜2日
初心者へのやさしさ
35/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
csharp
領域
desktop, frontend

調査の方向性

CommunityToolkit.WinUI.Controls.ColorPicker の実装から始め、提供されている WinUI 3 XAML を使用して、特に Flyout 内の IsColorSpectrumVisible="False" 設定を含む動作を再現します。完了条件は、そのプロパティが false の場合にカラーピッカーを再度開いてもカラースペクトラムが非表示のままになることです。

索引モデルが issue の本文から書いたものです。

説明

bug components::controls::colorpicker
Describe the bug

I've implemented the CommunityToolkit.WinUI.Controls.ColorPicker color picker version 8.2. However, I can't managed to save the spectrum state when I close and reopen the application, so I decided to disable it visually with the "False" parameter within the UI. However, when I click on the color picker again, the spectrum remains visible.

Steps to reproduce
To reproduce this issue create a new WinUI 3 project (Blank App, Packaged)
<?xml version="1.0" encoding="utf-8"?>
<Window
    x:Class="TestColorPicker.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
    xmlns:controls="using:CommunityToolkit.WinUI.Controls"
    mc:Ignorable="d">

    <Grid Padding="40">
        <Button Content="Abrir ColorPicker" HorizontalAlignment="Center" VerticalAlignment="Center">
            <Button.Flyout>
                <Flyout>
                    <!-- ColorPicker con espectro desactivado -->
                    <controls:ColorPicker
                        x:Name="TestColorPicker"
                        IsAlphaEnabled="True"
                        IsColorSpectrumVisible="False"
                        IsColorSliderVisible="True"
                        Color="#FF0000"/>
                </Flyout>
            </Button.Flyout>
        </Button>

        <!-- Texto para depuración -->
        <TextBlock Margin="0,150,0,0" HorizontalAlignment="Center"
                   Text="{x:Bind TestColorPicker.Color.ToString(), Mode=OneWay}"/>
    </Grid>
</Window>
c#
using System;
using Microsoft.UI.Xaml;


// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

namespace TestColorPicker
{
    /// <summary>
    /// An empty window that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            var assembly = typeof(CommunityToolkit.WinUI.Controls.ColorPicker).Assembly;
            var version = assembly.GetName().Version;
            System.Diagnostics.Debug.WriteLine($"ColorPicker version: {version}");
        }
    }
}
Expected behavior

You will see the button to open the color picker and the erroneous behavior of the toolkit appears, even if the spectrum is set to false it will still be displayed.

Screenshots

https://imgur.com/a/REiGxTv#GcjasNg

Code Platform
  • UWP
  • WinAppSDK / WinUI 3
  • Web Assembly (WASM)
  • Android
  • iOS
  • MacOS
  • Linux / GTK
Windows Build Number
  • Windows 10 1809 (Build 17763)
  • Windows 10 1903 (Build 18362)
  • Windows 10 1909 (Build 18363)
  • Windows 10 2004 (Build 19041)
  • Windows 10 20H2 (Build 19042)
  • Windows 10 21H1 (Build 19043)
  • Windows 10 21H2 (Build 19044)
  • Windows 10 22H2 (Build 19045)
  • Windows 11 21H2 (Build 22000)
  • Other (specify)
Other Windows Build number

No response

App minimum and target SDK version
  • Windows 10, version 1809 (Build 17763)
  • Windows 10, version 1903 (Build 18362)
  • Windows 10, version 1909 (Build 18363)
  • Windows 10, version 2004 (Build 19041)
  • Windows 10, version 2104 (Build 20348)
  • Windows 11, version 22H2 (Build 22000)
  • Other (specify)
Other SDK version

Microsoft.WindowsAppSDK 1.7.250606001

Visual Studio Version

2022

Visual Studio Build Number

Versión 17.14.7

Device form factor

Desktop

Additional context

No response

Help us help you

Yes, I'd like to be assigned to work on this item.

主要言語
C#
スター
1.1k
フォーク
166
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

CommunityToolkit/Windows のほかの issue

CommunityToolkit/Windows の issue をすべて見る

似ている issue

C# の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。