Neuerstellung

- Quelle: https://github.com/oxyplot/oxyplot
This commit is contained in:
2023-09-02 09:24:59 +02:00
commit 9520c1fa4a
810 changed files with 117869 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Example.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace ExampleLibrary
{
using OxyPlot;
/// <summary>
/// Represents an example.
/// </summary>
public class Example
{
/// <summary>
/// Initializes a new instance of the <see cref="Example"/> class.
/// </summary>
/// <param name="model">The model.</param>
/// <param name="controller">The controller.</param>
public Example(PlotModel model, IPlotController controller = null)
{
this.Model = model;
this.Controller = controller;
}
/// <summary>
/// Gets the controller.
/// </summary>
/// <value>
/// The controller.
/// </value>
public IPlotController Controller { get; private set; }
/// <summary>
/// Gets the model.
/// </summary>
/// <value>
/// The model.
/// </value>
public PlotModel Model { get; private set; }
}
}