32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<local:ComboBoxGenericSearch
|
|
x:Class="BeWo.View.Controls.ComboBoxes.ComboBoxEmployeeSearch"
|
|
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:local="clr-namespace:BeWo.View.Controls.ComboBoxes"
|
|
xmlns:localSearchView="clr-namespace:BeWo.View.Search"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:uc="clr-namespace:BeWo.Controls;assembly=BeWo.Controls"
|
|
x:Name="root"
|
|
d:DesignWidth="200"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<uc:PopUpEdit
|
|
x:Name="popupedit"
|
|
MinHeight="23"
|
|
DeleteButtonVisibility="Visible"
|
|
IsReadOnly="True"
|
|
PopUpClick="popupedit_PopUpClick"
|
|
DeleteClick="popupedit_DeleteClick"/>
|
|
<Popup
|
|
x:Name="popup"
|
|
Width="370"
|
|
Height="250"
|
|
Margin="10"
|
|
Placement="MousePoint"
|
|
StaysOpen="False">
|
|
<localSearchView:EmployeeSearchView x:Name="searchview" />
|
|
</Popup>
|
|
</Grid>
|
|
</local:ComboBoxGenericSearch>
|