Krypton-Suite / Standard-Toolkit

An update to Component factory's krypton toolkit to support .NET Framework 4.6.2 - 4.8.1 to .NET 6 - 8
BSD 3-Clause "New" or "Revised" License
391 stars 57 forks source link

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

Open Smurf-IV opened 1 month ago

Smurf-IV commented 1 month ago

Using todays alpha Via the testForm: image

giduac commented 2 weeks ago

Hi @Smurf-IV,

Had a brief look at this

        /// <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