Beispiel #1
0
        public void CallMouseClick(object sender, MouseButtonEventArgs e)
        {
            //Image_MouseDown(sender, e);
            ImageDetails item = StaticClass.ImageListBoxSelectedItem;

            if (item != null)
            {
                int ind = ListBoxSnapshots.Items.IndexOf(item);
                ListBoxSnapshots.SelectedIndex = ind;
                ListBoxSnapshots.ScrollIntoView(item);
                ListBoxSnapshots.Focus();
                StaticClass.ImageListBoxSelectedIndex = ind;
            }
        }