43
Source/Examples/ExampleLibrary/Example.cs
Normal file
43
Source/Examples/ExampleLibrary/Example.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user