添加项目文件。
parent
01d05dd1d0
commit
2e07d45cf5
@ -0,0 +1,9 @@
|
|||||||
|
<Application x:Class="testWPFDevelopers.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:testWPFDevelopers"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
@ -0,0 +1,10 @@
|
|||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// or application resource dictionaries)
|
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// app, or any theme specific resource dictionaries)
|
||||||
|
)]
|
@ -0,0 +1,22 @@
|
|||||||
|
<Window x:Class="testWPFDevelopers.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:testWPFDevelopers"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
Title="MainWindow" Height="450" Width="800">
|
||||||
|
<Grid>
|
||||||
|
<ComboBox IsTextSearchEnabled="False"
|
||||||
|
IsEditable="True"
|
||||||
|
Height="30"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
|
Margin="12,23,0,0"
|
||||||
|
Name="comboBox1"
|
||||||
|
VerticalAlignment="Top"
|
||||||
|
Width="120"
|
||||||
|
KeyUp="comboBox1_KeyUp"
|
||||||
|
MaxDropDownHeight="150"/>
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
Loading…
Reference in New Issue