当前位置:网站首页>WPF simple login page completion case
WPF simple login page completion case
2022-07-29 07:16:00 【Jinan medical applet champion】
grid Use of individual controls , complete
<Window x:Class="WpfAppDL.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:WpfAppDL"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="600" FontSize="20">
<Grid >
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="*" />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="5*"/>
</Grid.ColumnDefinitions>
<TextBlock Text=" user name :" />
<TextBox Text=" Zhang San " Grid.Column="1" />
<TextBlock Text=" password :" Grid.Row="1"/>
<TextBox Text=" Zhang San " Grid.Row="1" Grid.Column="1" />
<Button Content=" Sign in " Grid.Row="2" Margin="-100,2,4,5" Grid.ColumnSpan="2" Width="100" Height="30" Click="Button_Click"/>
<Button Content=" register " Grid.Row="2" Width="100" Height="30" Grid.Column="1"/>
</Grid>
</Window>
effect
Click login , Output string

边栏推荐
- MySQL advanced (Advanced) SQL statement (I)
- 基于C语言设计的学籍管理系统
- Vmware16 create virtual machine: win11 cannot be installed
- JS chicken laying eggs and egg laying chickens. Who appeared earlier, object or function? Is function an instance of function?
- [C language brush leetcode] 2332. The latest time to get on the bus (m)
- 1172. The plate stack has a sequence table + stack
- Remote invocation of microservices
- Ethernet interface introduction
- Google fragmented notes JWT (Draft)
- 时钟树综合(一)
猜你喜欢

Why does ETL often become ELT or even let?

2022-07-28: what is the output of the following go language code? A:AA; B:AB; C:BA; D:BB。 package main import ( “fmt“ ) func main() { f

个人博客系统(附源码)

Vmware16 create virtual machine: cannot create a new virtual machine, do not have permission to perform this operation

Excel文件读写(创建与解析)

Thoroughly understand kubernetes scheduling framework and plug-ins

After three years of outsourcing, the salary of automatic testing after job hopping is twice that of the original. The secret is

JS 鸡生蛋与蛋生鸡问题,Object与Function究竟谁出现的更早?Function算不算Function的实例?

Decompilation of wechat applet
![[Charles' daily problems] when you open Charles, you can't use nails](/img/ef/037fc416175d4de769ac6484cb53df.png)
[Charles' daily problems] when you open Charles, you can't use nails
随机推荐
VMware16创建虚拟机:Win11无法安装
SpingBoot整合Quartz框架实现动态定时任务(支持实时增删改查任务)
记 - 踩坑-实时数仓开发 - doris/pg/flink
彻底搞懂kubernetes调度框架与插件
330. 按要求补齐数组
Flink实时仓库-DWD层(交易域-加购维度退化处理)模板代码
数组的子集不能累加出的最小正数
聊天机器人有何用处?有何类型?看完这些就明白了!
Ansible中的变量及加密
MySQL 使用客户端以及SELECT 方式查看 BLOB 类型字段内容总结
路由中的生命周期钩子 - activated与deactivated
自定义事件
Summary of OCR optical character recognition methods
最新百亿量化私募名单
DM data guard cluster setup
fillder使用
【C语言刷LeetCode】67. 二进制求和(E)
如何使用gs_expansion扩展节点
vue-router路由缓存
Flink实时仓库-DWD层(下单-多张表实现join操作)模板代码