27 lines
810 B
C#
27 lines
810 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="MainWindow.xaml.cs" company="OxyPlot">
|
|
// Copyright (c) 2014 OxyPlot contributors
|
|
// </copyright>
|
|
// <summary>
|
|
// Interaction logic for MainWindow.xaml
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace AnimationsDemo
|
|
{
|
|
using System.Windows;
|
|
|
|
using WpfExamples;
|
|
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
[Example(null, "Animations using extension methods on series.")]
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
}
|
|
} |