skip to Main Content

How can I make the combobox add items faster? – Photoshop

I used a ComboBox to load all the font on the computer and preview it. Here is the XAML: <Window x:Class="Sample.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:Sample" mc:Ignorable="d" Title="Demo" Height="450" Width="800" WindowStartupLocation="CenterScreen" WindowStyle="None" Loaded="Window_Loaded" Background="White"> <Window.Resources> <local:FontFamilyConverter x:Key="FontFamilyConverter"></local:FontFamilyConverter> </Window.Resources> <Grid> <ComboBox…

VIEW QUESTION
Back To Top
Search