Tabs
let homePageContent =
DockPanel.create [
DockPanel.children [
TextBox.create [ TextBox.text "Home" ]
]
]
let aboutPageContent =
DockPanel.create [
DockPanel.children [
TextBox.create [ TextBox.text "About" ]
]
]
let tabs : IView list = [
TabItem.create [
TabItem.header "Home"
TabItem.content homePageContent
]
TabItem.create [
TabItem.header "About"
TabItem.content aboutPageContent
]
]
TabControl.create [
TabControl.tabStripPlacement Dock.Left // Change this property to tell the app where to show the tab bar
TabControl.viewItems tabs
]Last updated