SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

0 0 0 C#
// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System;
2015-12-14 14:54:04 -05:00
using System.Windows.Forms;
namespace CefSharp.WinForms.Example
{
public partial class InputBox : Form
{
public InputBox()
{
InitializeComponent();
}
public event EventHandler OnEvaluate
{
add { _evaluate.Click += value; }
remove { _evaluate.Click -= value; }
}
public string Instructions
{
get { return _instructions.Text; }
set { _instructions.Text = value; }
}
public string Result
{
get { return _result.Text; }
set { _result.Text = value; }
}
public string Title
{
set { Text = "Evaluate script - " + value; }
}
public string Value
{
get { return _value.Text; }
set { _value.Text = value; }
}
private void _close_Click(object sender, EventArgs e)
{
Close();
}
}
}