BDisp
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`.  
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.  
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. 