Esempio n. 1
0
        //public void btnDelete_Click()
        //{

        //}

        public void slbEntries_MouseDoubleClick(object sender, RoutedEventArgs e)
        {
            //int index = slbEntries.IndexFromPoint(e.Location);
            //if (index != ListBox.NoMatches)
            //{
            //    ChosenEntry = slbEntries.GetInternalIndex(index);
            //    SelectedOKEvent?.Invoke();
            //}

            if (SearchList.InternalIndex > -1)
            {
                SelectedOKEvent?.Invoke();
            }
        }
 public void btnOK_Click(object sender, RoutedEventArgs e)
 {
     SelectedOKEvent?.Invoke();
 }