BDisp

Results 764 comments of BDisp

@tig I think this code isn't totally correct because it's avoiding the first view of the `indicies` to get focus if it contains the `_previouslyFocused`. This is avoiding the tab...

> > IMO TabRowView should just be a SuperView for a set of Views that have their borders set. > > Yes this makes sense. And is why tab view...

@tig I only have one test failing `public void ProcessKey_Down_Up_Right_Left_Home_End_PageDown_PageUp` because the navigation is forcing using the `RestoreFocus` method and thus avoid the `SelectedTab` being focused and always focus the...

Done in https://github.com/tig/Terminal.Gui/pull/41. The only way to focus the selected tab is if the view container `CanFocus` is false or if a view is currently selected in the container and...

I don't think I can handle that responsibility. I'd rather you write it yourself and I'll give you all the help I can within the limits of my knowledge, if...

> I have no idea how to do it. I thought you already had some idea. In that case I will try to work out some solution. However, the most...

> We should also have the same for each project in `/Examples`. I agree, but I would create a `ExampleWindow.cs` file with the `public class ExampleWindow : Window` in the...

`NetDriver` and `v2net` are rendering badly the `Button` only in `Windows`. ![Image](https://github.com/user-attachments/assets/adea4746-40c9-4908-93bc-07a5919cdf04) ![Image](https://github.com/user-attachments/assets/22a33b28-2c4b-4dd5-8ea3-d2d2023f995d)

But what is odd is that the output variable is correct. Thus it seems that the `Console.Write` or the `Windows Terminal` isn't rendering well the output. ![Image](https://github.com/user-attachments/assets/cd9567b3-d817-4911-ba04-9fb5e9dcbc3b) ![Image](https://github.com/user-attachments/assets/b30f9291-0b55-4e15-9594-6c8fad7639d7)

I found the issue. The Examples projects aren't `using Console.OutputEncoding = System.Text.Encoding.UTF8;` which is needed for `NetDriver`. Win32 API perhaps assume the UTF8 encoding, I think. ![Image](https://github.com/user-attachments/assets/5cc25efb-ffcf-4420-bb70-323a3ba74e3b)