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
388 stars 57 forks source link

[Feature Request]: `KryptonContextMenuComboBox` & `KryptonContextMenuProgressBar` need to be implemented #1673

Open PWagner1 opened 1 month ago

PWagner1 commented 1 month ago

Both KryptonContextMenuComboBox & KryptonContextMenuProgressBar need to be fully implemented.

Smurf-IV commented 1 month ago

Can you add pictures of what this looks like in Winforms? or is this an EXT feature first ?

giduac commented 1 week ago

Is it possible to use a similar approach as in Winforms with the KContextMenu:

            System.Windows.Forms.ContextMenuStrip cm = new();
            ToolStripControlHost tsch = new ToolStripControlHost(new KryptonProgressBar());
            (tsch.Control as KryptonProgressBar)!.Value = 100;
            cm.Items.Add(tsch);

            this.ContextMenuStrip = cm;
PWagner1 commented 1 week ago

Currently working on these in EXT, using the standard WinForms ContextMenu