Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
סליחה על הכותרת קצת הסתבכתי איתה בכל אופן השאלה שלי היא כך:
יש לי tabcontrol בwpf בתוך הtabcontrol יש לי שני tabpages ובאחד מהם יש listbox
ניתקלתי בבעיה שהevent של selectionchanged מופעל כל פעם שאני לוחץ על הlistbox איך אפשר למנוע זאת?
selectionchanged של הטאב קונטרול? או של הlistbox?
@dovid על הtabcontrol
private void tabControl_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (tabControl.SelectedIndex == 0) { SearchTextBox.Focus(); SearchTextBox.SelectAll(); } }
הפתרון הוא להאזין לאירוע של הList ומטפל לסמן שהאירוע טופל: https://stackoverflow.com/a/3659889/1271037