1
Open Discussion / Re: Windows 10 UWP
« on: May 03, 2017, 11:36:28 AM »
Will there be comms drivers for ControlLogix for WPF?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
private void TextBox1_DoubleClick(object sender, EventArgs e)
{
MfgControl.AdvancedHMI.Controls.AlphaKeyboard kpd = new MfgControl.AdvancedHMI.Controls.AlphaKeyboard();
if (kpd.ShowDialog() == DialogResult.OK) {
TextBox1.Text = kpd.Value;
}
}