Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: "TaskDialog" has many issues #1687

Open
Smurf-IV opened this issue Jul 28, 2024 · 1 comment
Open

[Bug]: "TaskDialog" has many issues #1687

Smurf-IV opened this issue Jul 28, 2024 · 1 comment
Assignees
Labels
area:toolkit All issues related to the toolkit components. awaiting feedback A fix for this issue has been implemented, waiting for feedback on the fix. bug Something isn't working regression Something was working in a previous release, but isn't working now. version:90 All things to do with V90.
Milestone

Comments

@Smurf-IV
Copy link
Member

Using todays alpha
Via the testForm:
image

  • There are "Things" in the top border area
  • It is resizable
  • Icon is not displayed correctly
@Smurf-IV Smurf-IV added bug Something isn't working regression Something was working in a previous release, but isn't working now. area:toolkit All issues related to the toolkit components. version:90 All things to do with V90. labels Jul 28, 2024
@Smurf-IV Smurf-IV added this to the Version 90 milestone Jul 28, 2024
@PWagner1 PWagner1 changed the title [Bug]: "TaskDailog" has many issues [Bug]: "TaskDialog" has many issues Aug 4, 2024
@giduac giduac self-assigned this Aug 29, 2024
@giduac
Copy link

giduac commented Aug 29, 2024

Hi @Smurf-IV,

Had a brief look at this

  • Current alpha is not resizable
  • The "things" are not visible. Tried some 10 themes.
  • The image displayed is actually an Icon. Unless that is stretched it won't get much bigger than that....
    This the property:
        /// <summary>
        /// Gets and sets the predefined icon.
        /// </summary>
        [Category(@"Appearance")]
        [Description(@"Predefined icon.")]
        [DefaultValue(KryptonMessageBoxIcon.None)]
        public KryptonMessageBoxIcon Icon
        {
            get => _icon;

            set
            {
                if (_icon != value)
                {
                    _icon = value;
                    OnPropertyChanged(new PropertyChangedEventArgs(nameof(Icon)));
                }
            }
        }

The Icon can be stretched or zoomed through the PictureBox like this

image

@giduac giduac added the awaiting feedback A fix for this issue has been implemented, waiting for feedback on the fix. label Aug 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:toolkit All issues related to the toolkit components. awaiting feedback A fix for this issue has been implemented, waiting for feedback on the fix. bug Something isn't working regression Something was working in a previous release, but isn't working now. version:90 All things to do with V90.
Projects
None yet
Development

No branches or pull requests

2 participants