我有以下代码为我构建一个文本框。 该应用程序要求我使所有控件都通用, 因为这是我们api发送给我们的方式。
TextBox txtcontent = new TextBox();
txtcontent.HorizontalAlignment = Windows.UI.Xaml.HorizontalAlignment.Stretch;
txtcontent.SetValue(Grid.ColumnProperty, 1);
txtcontent.SetValue(Grid.RowProperty, RowCount);
txtcontent.Width = 320;
txtcontent.FontSize = 20;
txtcontent.TextWrapping = TextWrapping.Wrap;
txtcontent.Margin = new Thickness(10);
txtcontent.Foreground = App.scbAccTechGrayDark;
txtcontent.BorderBrush = App.scbAccTechGrayLight;
txtcontent.Background = App.scbAccTechGreenLight;
txtcontent.Tapped += txtcontent_Tapped;
现在的问题是,当我点击文本框时,它不会触发被点击的事件。 我知道点击鼠标会触发商店应用的点击事件吗?
以下是点击事件的第1部分,但我从未接触到它。
void txtcontent_Tapped(object sender, TappedRoutedEventArgs e)
{
TextBox txtFinder = (sender as TextBox);
string[] myconver = (sender as TextBox).Tag.ToString().Split(',');
int BlockIndex = Convert.ToInt16(myconver[4].ToString());
int FieldID = Convert.ToInt16(myconver[5].ToString());
string ColumnName = Convert.ToString(myconver[6].ToString());
string FieldCode = Convert.ToString(myconver[7]);
string BlockName = Convert.ToString(myconver[8]);
}
任何人都可以告诉我我必须做什么,或者我在这里做错了什么?
答案 0 :(得分:3)
答案 1 :(得分:3)
您可以使用以下代码将Tapped事件与文本框关联,使用AddHandler方法。
txtcontent.AddHandler(TappedEvent, new TappedEventHandler(txtcontent_Tapped), true);
void txtcontent_Tapped(object sender, TappedRoutedEventArgs e)
{
System.Diagnostics.Debug.WriteLine("Tested!!");
}
以下是完整的代码片段。
public MainPage()
{
this.InitializeComponent();
AddControl();
}
private void AddControl()
{
TextBox txtcontent = new TextBox();
txtcontent.HorizontalAlignment = Windows.UI.Xaml.HorizontalAlignment.Stretch;
txtcontent.SetValue(Grid.ColumnProperty, 1);
txtcontent.SetValue(Grid.RowProperty, 0);
txtcontent.Width = 150;
txtcontent.FontSize = 20;
txtcontent.TextWrapping = TextWrapping.Wrap;
txtcontent.Margin = new Thickness(10);
txtcontent.AddHandler(TappedEvent, new TappedEventHandler(txtcontent_Tapped), true);
//txtcontent.Foreground = new Solid
//txtcontent.BorderBrush = App.scbAccTechGrayLight;
//txtcontent.Background = App.scbAccTechGreenLight;
this.LayoutRoot.Children.Add(txtcontent);
}
void txtcontent_Tapped(object sender, TappedRoutedEventArgs e)
{
System.Diagnostics.Debug.WriteLine("Tested by WmDev!!");
}
希望它有所帮助。
谢谢。
答案 2 :(得分:0)
private void txtbox_GotFocus(object sender, RoutedEventArgs e)
{
txtbox.Text = ""; // da e34n el txtbox yb2a empty when clicked ;)
}
试试这个;)