博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF自定义搜索框代码分享
阅读量:4949 次
发布时间:2019-06-11

本文共 3289 字,大约阅读时间需要 10 分钟。

首先下载搜索图标:

控件中的搜索图标下载地址: 

搜索框设计过程比较简单: 

1、先定义一个Rectangle作为背景 

2、然后中间放TextBox输入,可以重写其中的模板。提示语Label放在模板中,可以在模板的触发器中控制隐藏显示~ 

3、搜索按钮-大家随便在网上下个就行了。 

UserControl界面: 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<UserControl x:Class=
"WpfApplication18.SearchControl"
       
xmlns=
""
       
xmlns:x=
""
       
xmlns:mc=
""
       
xmlns:d=
""
       
mc:Ignorable=
"d"
MinHeight=
"30"
MinWidth=
"150"
Background=
"Transparent"
       
d:DesignHeight=
"30"
d:DesignWidth=
"150"
>
  
<Grid>
    
<Grid.ColumnDefinitions>
      
<ColumnDefinition Width=
"15"
></ColumnDefinition>
      
<ColumnDefinition Width=
"*"
></ColumnDefinition>
      
<ColumnDefinition Width=
"36"
></ColumnDefinition>
    
</Grid.ColumnDefinitions>
    
<Rectangle Grid.Column=
"0"
Grid.ColumnSpan=
"3"
Fill=
"LightGray"
RadiusX=
"15"
RadiusY=
"15"
Opacity=
"0.8"
></Rectangle>
     
    
<TextBox x:Name=
"TbxInput"
Grid.Column=
"1"
KeyDown=
"TbxInput_OnKeyDown"
>
      
<TextBox.Template>
        
<ControlTemplate TargetType=
"TextBox"
>
          
<Grid>
            
<TextBlock x:Name=
"Uc_TblShow"
Text=
"请输入..."
Foreground=
"Gray"
Opacity=
"0.5"
VerticalAlignment=
"Center"
Visibility=
"Collapsed"
></TextBlock>
            
<TextBox x:Name=
"Uc_TbxContent"
Foreground=
"Gray"
Background=
"Transparent"
VerticalAlignment=
"Center"
VerticalContentAlignment=
"Center"
BorderThickness=
"0"
                 
Text=
"{Binding ElementName=TbxInput,Path=Text,Mode=TwoWay}"
FontSize=
"18"
></TextBox>
          
</Grid>
          
<ControlTemplate.Triggers>
            
<Trigger SourceName=
"Uc_TbxContent"
Property=
"Text"
Value=
""
>
              
<Setter TargetName=
"Uc_TblShow"
Property=
"Visibility"
Value=
"Visible"
></Setter>
            
</Trigger>
            
<Trigger SourceName=
"Uc_TbxContent"
Property=
"IsFocused"
Value=
"True"
>
              
<Setter TargetName=
"Uc_TblShow"
Property=
"Visibility"
Value=
"Collapsed"
></Setter>
            
</Trigger>
          
</ControlTemplate.Triggers>
        
</ControlTemplate>
      
</TextBox.Template>
    
</TextBox>
     
    
<Button x:Name=
"BtnSearch"
Grid.Column=
"2"
Click=
"BtnSearch_OnClick"
Cursor=
"Hand"
>
      
<Button.Template>
        
<ControlTemplate TargetType=
"Button"
>
          
<Grid>
            
<Image x:Name=
"Uc_Image"
Source=
"1181298.png"
Height=
"20"
Width=
"20"
></Image>
            
<ContentPresenter></ContentPresenter>
          
</Grid>
          
<ControlTemplate.Triggers>
            
<Trigger Property=
"IsMouseOver"
Value=
"true"
>
              
<Setter TargetName=
"Uc_Image"
Property=
"Height"
Value=
"25"
></Setter>
              
<Setter TargetName=
"Uc_Image"
Property=
"Width"
Value=
"25"
></Setter>
            
</Trigger>
          
</ControlTemplate.Triggers>
        
</ControlTemplate>
      
</Button.Template>
    
</Button>
  
</Grid>
</UserControl>

UserControl后台:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
public
partial
class
SearchControl : UserControl
{
  
public
SearchControl()
  
{
    
InitializeComponent();
  
}
 
  
public
event
EventHandler<SearchEventArgs> OnSearch;
  
private
void
BtnSearch_OnClick(
object
sender, RoutedEventArgs e)
  
{
    
ExeccuteSearch();
  
}
 
  
private
void
TbxInput_OnKeyDown(
object
sender, KeyEventArgs e)
  
{
    
ExeccuteSearch();
  
}
 
  
private
void
ExeccuteSearch()
  
{
    
if
(OnSearch!=
null
)
    
{
      
var args=
new
SearchEventArgs();
      
args.SearchText = TbxInput.Text;
      
OnSearch(
this
, args);
    
}
  
}
}
public
class
SearchEventArgs : EventArgs
{
  
public
string
SearchText {
get
;
set
; }
}

直接引用就行了:<wpfApplication18:SearchControl></wpfApplication18:SearchControl>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

 

转载于:https://www.cnblogs.com/sjqq/p/7891189.html

你可能感兴趣的文章
机电行业如何进行信息化建设
查看>>
Windows Azure Platform Introduction (4) Windows Azure架构
查看>>
【转】chrome developer tool 调试技巧
查看>>
mahout运行测试与kmeans算法解析
查看>>
互相给一巴掌器
查看>>
Android SDK环境变量配置
查看>>
VM10虚拟机安装图解
查看>>
9、总线
查看>>
Git 笔记 - section 1
查看>>
java通过jsp+javaBean+servlet实现下载功能
查看>>
STM32 使用Cubemx 建一个USB(HID)设备下位机,实现数据收发
查看>>
异步表单提交
查看>>
[洛谷U871]building
查看>>
次小生成树
查看>>
Redis在windows下安装过程
查看>>
ip转城市接口,ip转省份接口,ip转城市PHP方法
查看>>
android 注释常用标签
查看>>
Spring context:property-placeholder 一些坑
查看>>
如何使用 adb 命令实现自动化测试
查看>>
中国剩余定理
查看>>