Nullable Truth
Nullable Truth
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
Ahh, I may have to do some digging around for other areas of my application. Thank you very much to both of you for looking into this.
12 replies
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
No description
12 replies
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
This works exactly as I need it to.
12 replies
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
Oh my days, I was setting the based on to just 'DataGridRow'
12 replies
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
I believe I tried the 'BasedOn' attribute to no avail
12 replies
CC#
Created by Nullable Truth on 10/5/2023 in #help
❔ WPF DataGrid RowStyle DataTrigger - Doesn't Keep Default Theme
Of course if my way of doing this is wrong then I would like to know too.
12 replies
CC#
Created by Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa on 10/5/2023 in #help
how do i get digits of an int?
Good morning, a quick way to solve this is as so:
int num = 475;
foreach (char digit in num.ToString().ToArray())
{
Console.WriteLine(digit);
}
int num = 475;
foreach (char digit in num.ToString().ToArray())
{
Console.WriteLine(digit);
}
23 replies