Commit 7f679b9
Changed files (3)
product
desktop.ui
product/desktop.ui/views/SingleStockTab.xaml
@@ -0,0 +1,8 @@
+<UserControl x:Class="solidware.financials.windows.ui.views.SingleStockTab" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:Charting="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit" mc:Ignorable="d"
+ <DockPanel>
+ <Label Content="{Binding Path=Header}"></Label>
+ <Charting:Chart>
+ <Charting:LineSeries ItemsSource="{Binding Path=Chart}" IndependentValueBinding="{Binding Path=Key}" DependentValueBinding="{Binding Path=Value}"></Charting:LineSeries>
+ </Charting:Chart>
+ </DockPanel>
+</UserControl>
\ No newline at end of file
product/desktop.ui/views/SingleStockTab.xaml.cs
@@ -0,0 +1,12 @@
+using solidware.financials.windows.ui.presenters;
+
+namespace solidware.financials.windows.ui.views
+{
+ public partial class SingleStockTab : View<SingleStockPresenter>
+ {
+ public SingleStockTab()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
product/desktop.ui/solidware.financials.csproj
@@ -200,6 +200,9 @@
<DependentUpon>ShellWIndow.xaml</DependentUpon>
</Compile>
<Compile Include="views\controls\SmartGrid.cs" />
+ <Compile Include="views\SingleStockTab.xaml.cs">
+ <DependentUpon>SingleStockTab.xaml</DependentUpon>
+ </Compile>
<Compile Include="views\StatusBarRegion.xaml.cs">
<DependentUpon>StatusBarRegion.xaml</DependentUpon>
</Compile>
@@ -281,6 +284,10 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
+ <Page Include="views\SingleStockTab.xaml">
+ <SubType>Designer</SubType>
+ <Generator>MSBuild:Compile</Generator>
+ </Page>
<Page Include="views\StatusBarRegion.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>