This is what the option dialog window looks like in Outlook 2010. I wonder how I can create a similar option window with C# WinForm controls.
Looking at it first, I thought it kinda works like TabControl
. But TabControl
doesn't seem to offer Left/Right panel layout.
Then, I thought of SplitContainer
control and could probably take advantage of it, where the left panel could be having a list of menu buttons, and the right panel displaying the option details.
However, here also comes the problems, how can I create menu buttons that look like those in the screenshot then?
Perhaps, there're some existing controls that I am missing. If WinForm doesn't look good here, what else could I try?