using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace FLY.ControlLibrary.UI.OSK
{
///
/// 虚拟键盘
///
public interface IVirtualKeyboard
{
///
/// 打开键盘
///
///
void Open(TextBox textbox);
}
}