iWOWS/WolfOfWallStreet/Views/MainPage.xaml

30 lines
1.3 KiB
XML

<UserControl
x:Class="WolfOfWallStreet.Views.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controllers="clr-namespace:WolfOfWallStreet.Views.Controllers"
xmlns:hc="https://handyorg.github.io/handycontrol"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:prism="http://prismlibrary.com/"
xmlns:system="clr-namespace:System;assembly=System.Runtime"
xmlns:views="clr-namespace:WolfOfWallStreet.Views"
prism:ViewModelLocator.AutoWireViewModel="True"
FlowDirection="RightToLeft">
<materialDesign:Card HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<TabControl Background="Transparent" Style="{StaticResource TabControlInLine}">
<TabItem Header="MofidOnline">
<controllers:MofidOnlineController />
</TabItem>
<TabItem Header="EasyTrader">
<controllers:EasyTraderController />
</TabItem>
<TabItem Header="OnlinePlus">
<controllers:OnlinePlusController />
</TabItem>
<TabItem Header="Symbols">
<controllers:SymbolsController />
</TabItem>
</TabControl>
</materialDesign:Card>
</UserControl>