Jeffrey Jangli

Results 18 issues of Jeffrey Jangli

### Bug type Component ### Component name MudDataGrid ### What happened? When using a MudDataGrid with `Groupable="true"` and `MultiSelection="true"`, the checkboxes are not visible. Screenshot is from the docs [Grouping...

triage

### Bug type Component ### Component name MudTabs ### What happened? Based on the first two screenshots, I'd expect that the `SliderColor` in the 3rd screenshot would have the same...

triage

The `PhysicalDiskInfo` class provides access to information of a physical disk on the Computer. Input Physical Disk Number: [0] Instance: [Alphaleonis.Win32.Device.PhysicalDiskInfo] #001 DeviceDescription = [Disk drive] #002 DevicePath = [\\?\scsi#disk&ven_vmware&prod_virtual_disk#000000#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}]...

Enhancement

Hi @alphaleonis, I'd appreciate a review on this one, for a v2.3. I think it's ready to go.

Enhancement

To keep the behaviour the same as .NET, an `IOException` should be thrown.

Bug :beetle:

To show us your gratitude, please consider donating an astronomical amount of cash. Or, if that is too much to ask :yum: then just let us, and the rest of...

Discussion

https://www.youtube.com/watch?v=HPjAwfkF3r8&index=48&list=LL6HfiE9VRG2BxLw6ae6Y8eg

Discussion

When I add: `Maximum="{Binding ProgressBarMaxValue, Mode=OneWay}"` to the *ProgressBar* control in XAML, and exception is thrown. https://github.com/aalitor/WPF_Circular-Progress-Bar/blob/18c25ac79e57bffc525d77dddb8339a4b53e17ae/CircularProgressBar/CircularProgressBar.cs#L39 This is what I used to fix it, but perhaps the root cause...

https://github.com/aalitor/WPF_Circular-Progress-Bar/blob/18c25ac79e57bffc525d77dddb8339a4b53e17ae/CircularProgressBar/Converters.cs#L133 *progress* does not exist and a *System.NullReferenceException* exception is thrown. I fixed it like this: `if (null != parameter && values[0] is double && (double) parameter > 0)` Thanks...