namespace VideoBrowser.Models
{
using VideoBrowser.Controls.CefSharpBrowser;
using VideoBrowser.Controls.CefSharpBrowser.ViewModels;
using VideoBrowser.Resources;
///
/// Defines the .
///
public class TestButton : AddInButton
{
#region Constructors
///
/// Initializes a new instance of the class.
///
public TestButton()
{
this.Icon = Icons.Test;
this.ToolTip = "Test a code";
}
#endregion Constructors
#region Methods
///
/// The Execute.
///
/// The viewModel.
protected override void Execute(WebBrowserTabControlViewModel viewModel)
{
// Write the code to test here.
}
#endregion Methods
}
}