テキストブロックとテキストボックスがあります。テキストブロックにテキストボックスの値が含まれているかどうかを確認する必要があります。含まれている場合は、その特定の値を色で強調表示する必要があります。. .
例えば、
TextBlock.Text="ただのテスト"
TextBox に「te」と入力すると、テキストブロックの値が「Just a * Te *st」として強調表示されます。
xamlで。
誰かが意味を知っているなら言ってください!
前もって感謝します!
テキストブロックとテキストボックスがあります。テキストブロックにテキストボックスの値が含まれているかどうかを確認する必要があります。含まれている場合は、その特定の値を色で強調表示する必要があります。. .
例えば、
TextBlock.Text="ただのテスト"
TextBox に「te」と入力すると、テキストブロックの値が「Just a * Te *st」として強調表示されます。
xamlで。
誰かが意味を知っているなら言ってください!
前もって感謝します!
こんにちは、MVVM パターンで設計された基礎となるコードが解決策であることがわかりました。
**ビューモーダルからのデータのバインドに問題があったため、コードビハインドで迅速に対応しました
MainPage.xaml
<phone:PhoneApplicationPage
x:Class="FirstAppInCSharp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Width="Auto" Height="Auto"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
shell:SystemTray.IsVisible="True" d:DesignHeight="768" d:DesignWidth="480">
<Grid Name='LayoutRoot'>
<ListBox Height='500' Width='500' Background='Red'
Name="ContactList"
Margin="14,85,14,28" Loaded='ContactList_Loaded'
Foreground="Black"
ItemsSource='{Binding ListOftext}'
>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel
Background='AliceBlue' Height='100' Width='500'
Orientation="Horizontal">
<TextBlock
FontSize='30'
Height='70'
Foreground='Black'
Text='{Binding DisplayName}' Width='300'
/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<TextBox
Height='72'
HorizontalAlignment='Left'
Margin='8,27,0,0'
Name='textBox1'
TextChanged='textBox1_TextChanged'
VerticalAlignment='Top'
Width='460' />
</Grid>
今 MainPage.xaml.cs
public partial class MainPage : PhoneApplicationPage
{
TextBlock textBlock1 = null;
List<TextBlock> listText = null;
// Constructor
public MainPage()
{
InitializeComponent();
Contacts contact = new Contacts();
contact.SearchAsync("", FilterKind.DisplayName, null);
contact.SearchCompleted += new EventHandler<ContactsSearchEventArgs>(contact_SearchCompleted);
}
void contact_SearchCompleted(object sender, ContactsSearchEventArgs e)
{
ContactList.DataContext = new ListViewModal(e.Results);
}
private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
SearchVisualTree(ContactList);
}
private void SearchVisualTree(DependencyObject targetElement)
{
var count = VisualTreeHelper.GetChildrenCount(targetElement);
for (int i = 0; i < count; i++)
{
var child = VisualTreeHelper.GetChild(targetElement, i);
if (child is TextBlock)
{
textBlock1 = (TextBlock)child;
HighlightText();
break;
}
else
{
SearchVisualTree(child);
}
}
}
private void HighlightText()
{
if (textBlock1 != null)
{
string text = textBlock1.Text;
textBlock1.Text = text;
textBlock1.Inlines.Clear();
int index = text.IndexOf(textBox1.Text);
int lenth = textBox1.Text.Length;
if (!(index < 0))
{
Run run = new Run() { Text = text.Substring(index, lenth), FontWeight = FontWeights.ExtraBold };
run.Foreground = new SolidColorBrush(Colors.Orange);
textBlock1.Inlines.Add(new Run() { Text = text.Substring(0, index), FontWeight = FontWeights.Normal });
textBlock1.Inlines.Add(run);
textBlock1.Inlines.Add(new Run() { Text = text.Substring(index + lenth), FontWeight = FontWeights.Normal });
textBlock1.FontSize = 30;
textBlock1.Foreground = new SolidColorBrush(Colors.Black);
}
else
{
textBlock1.Text = "No Match";
}
}
}
private void ContactList_Loaded(object sender, RoutedEventArgs e)
{
}
}
リストのビューモーダルになりました(手動でデータを追加しました)
public class ListViewModal : INotifyPropertyChanged
{
public List<CheckList> ListOftext { get; set; }
public ListViewModal(IEnumerable<Contact> iEnumerable)
{
ListOftext = new List<CheckList>();
foreach (var list in iEnumerable)
{
ListOftext.Add(new CheckList(){DisplayName = list.DisplayName});
}
RaisePropertyChanged("ListOftext");
}
/// <summary>
/// Property changed method
/// Executes when a property changes its value
/// </summary>
/// <param name="propertyName"></param>
public void RaisePropertyChanged(string propertyName)
{
// this is the property changed method
//to detect property change
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
public event PropertyChangedEventHandler PropertyChanged;
private IEnumerable<Contact> iEnumerable;
}
データ バインディング クラス (MODEl クラス)
public class CheckList
{
public string DisplayName { get; set; }
}
ありがとう :) 必要に応じて、または不明な点がある場合は、さらに質問することができます。
テキスト ボックスTextChange
イベントに配置するサンプル コードを次に示します。
private void textBox1_TextChanged(object sender, TextChangedEventArgs e)
{
string text = "this is a TextBlock";
textBlock1.Text = text;
textBlock1.Inlines.Clear();
int index = text.IndexOf(textBox1.Text);
int lenth = textBox1.Text.Length;
if (!(index < 0))
{
Run run = new Run() { Text = text.Substring(index, lenth), FontWeight = FontWeights.ExtraBold };
run.Foreground = new SolidColorBrush(Colors.Orange);
textBlock1.Inlines.Add(new Run() { Text = text.Substring(0, index), FontWeight = FontWeights.Normal });
textBlock1.Inlines.Add(run);
textBlock1.Inlines.Add(new Run() { Text = text.Substring(index + lenth), FontWeight = FontWeights.Normal });
textBlock1.FontSize = 30;
textBlock1.Foreground = new SolidColorBrush(Colors.White);
}
else
{
textBlock1.Text = "No Match";
}
}
これにより、テキストが強調表示され、no match is no match is found が返されます。
注: このコード スニペットでは、大文字と小文字が区別されます。