我正在使用Google搜索结果实现创建自定义ComboBox控件,但是我使用箭头键遇到了一些问题。
问题详情
请观看此视频,因为我使用向上和向下箭头键演示问题,并在输出面板上查看。
http://screencast.com/t/DFkmlDKR
在视频中,我尝试搜索“a”(仅测试)并返回以“a”开头的Google搜索结果,然后按下向下和向上箭头键。在输出面板中,当我按下这些键时,它会显示突出显示的项目
然后我键入下一个字母“l”。现在如果您在输出面板上注意到,选择现在是“空”但我仍然按下UP&向下箭头键。
当您使用鼠标指针再次悬停在该项目上时,它将再次开始工作
我几天坚持这个问题并且没有找到解决方案。
我已经上传了此控件的测试版本,因此您也可以使用它。这是GoogleSuggestionComboBox
我的目标是制作UP&向下箭头键一直有效。
在代码的这一部分 我尝试添加
SelectedIndex = 0;
在ForEach语句之后,每次使用新结果重新填充集合时,它将选择第一个结果。不幸的是,它没有用。
您可以下载测试代码,以便播放和测试问题。 http://sdrv.ms/1eWV3Bc这里也是ComboBox的代码。
using GoogleSuggestionComboBox.Model;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace GoogleSuggestionComboBox
{
public class ComboBoxExC : ComboBox
{
GoogleSuggest google;
TextBox textbox;
string _text = string.Empty;
string _last_text = string.Empty;
public ComboBoxExC()
{
if (DesignerProperties.GetIsInDesignMode(this))
{
}
else
{
this.Loaded += ComboBoxExC_Loaded;
google = new GoogleSuggest();
google.OnGoogleSuggestAvailable += google_OnGoogleSuggestAvailable;
// since we have OnSelectionChanged "disabled"
// we need a way to know if the item in ComboBox is selected using mouse
EventManager.RegisterClassHandler(typeof(ComboBoxItem), ComboBoxItem.MouseDownEvent, new MouseButtonEventHandler(OnItemMouseDown));
}
}
void ComboBoxExC_Loaded(object sender, RoutedEventArgs e)
{
this.textbox = (TextBox)Template.FindName("PART_EditableTextBox", this);
}
private void OnItemMouseDown(object sender, MouseButtonEventArgs e)
{
var comboBoxItem = sender as ComboBoxItem;
if (comboBoxItem != null && comboBoxItem.IsHighlighted)
{
Model_SuggestedQueries m = (Model_SuggestedQueries)comboBoxItem.Content;
Go(m.Query);
}
}
protected override void OnSelectionChanged(SelectionChangedEventArgs e)
{
// don't do anything so the .Text value won't change.
//base.OnSelectionChanged(e);
}
protected override void OnPreviewKeyDown(KeyEventArgs e)
{
this.IsDropDownOpen = true;
base.OnPreviewKeyDown(e);
d("key: " + e.Key.ToString());
if (this.SelectedItem != null)
{
Model_SuggestedQueries m = (Model_SuggestedQueries)this.SelectedItem;
d("selected: " + m.Query);
}
else
{
d("null");
}
}
protected override void OnPreviewKeyUp(KeyEventArgs e)
{
base.OnPreviewKeyUp(e);
if (e.Key == Key.Enter)
{
if (this.SelectedItem == null)
{
Go(this.Text);
}
else
{
Model_SuggestedQueries m = (Model_SuggestedQueries)this.SelectedItem;
Go(m.Query);
}
}
else
{
if (this.Text != this._last_text)
{
google.LookForSuggestion(this.Text);
this._last_text = this.Text;
}
}
}
void google_OnGoogleSuggestAvailable(object sender, List<Model.Model_SuggestedQueries> suggestions)
{
this.Items.Clear();
suggestions.ForEach((a) =>
{
this.Items.Add(a);
});
}
void d(object a)
{
Debug.WriteLine(">>> " + a);
}
void Go(string query)
{
Process.Start("https://www.google.com.ph/search?q=" + query);
// clear suggestions
this.Items.Clear();
}
}
}
MainWindow.xaml
<Window x:Class="GoogleSuggestionComboBox.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:GoogleSuggestionComboBox"
Title="MainWindow" Height="133" Width="261" WindowStartupLocation="CenterScreen"
>
<Grid>
<StackPanel Margin="10">
<TextBlock Text="Search" />
<l:ComboBoxExC
IsEditable="True"
IsTextSearchEnabled="False"
TextSearch.TextPath="Query"
>
<l:ComboBoxExC.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Query}" />
</DataTemplate>
</l:ComboBoxExC.ItemTemplate>
</l:ComboBoxExC>
</StackPanel>
</Grid>
</Window>
谢谢你,
杰森
答案 0 :(得分:0)
我不知道确切的问题,但这是一个建议:
不要将ComboBox子类化 - 你不需要。
只需在MainForm上删除一个,然后从后面的代码中使用它 - 这样就更容易使用它。如果您需要更改组合框的工作方式,则只需要子类化,这不是典型的。
我尝试下载测试项目,但它不是一个zip文件 - 它是一个我无法打开的.7z。
另外,你的主要形式是一个窗口。这可能不是问题,但尝试创建一个新项目,只需使用项目为您提供的Main表单。在应用程序中进行了一些连接,调用MainForm将捕获异常等,这可能会为您提供更多关于问题的数据。
格雷格
答案 1 :(得分:0)
这是一个很老的问题,但我遇到了同样的问题。对我来说,主要问题是在选择一个项目或清除选择(将其设置为-1)之后,我无法再使用箭头键浏览这些项目,直到我将鼠标悬停在它们上为止。
经过几天的苦苦挣扎,我找到了解决方法:
KeyboardNavigation.SetDirectionalNavigation( this, KeyboardNavigationMode.Cycle );
this
是组合框,此行在子类组合框的构造函数中。