zoukankan      html  css  js  c++  java
  • 软件工程个人日报 2016/6/28

    个人日报 2016/6/28

    今天,通过调查表的反馈明确了改进方向。对于我所负责的部分,需要改进的方向主要有三个方面:

      1、改正使用Tab键在输入框中的切换顺序

      2、增加类似吐槽墙的UI

      3、美化UI

    今天完成了修改使用Tab键在输入框中的切换顺序

    之前使用Tab键会从用户名框切换到验证码框,再按Tab会切换到密码框。

    修改之后使用Tab可以按顺序从用户名框切换到密码框之后到验证码框。

    以下是修改后的代码:

    <Window x:Class="easyBJUT.MainWindow"
            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
            Title="登录" Height="260" Width="360">
        <Grid>
            <Button x:Name="resetButton" Content="重置" HorizontalAlignment="Left" Height="25" Margin="201,171,0,0" VerticalAlignment="Top" Width="75" Click="resetButton_Click"/>
            <Image x:Name="identifyingCodeImage" HorizontalAlignment="Left" Height="27" Margin="155,124,0,0" VerticalAlignment="Top" Width="72"/>
            <TextBox x:Name="username" HorizontalAlignment="Left" Height="25" Margin="69,64,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="150"/>
            <PasswordBox x:Name="password" HorizontalAlignment="Left" Height="25" Margin="69,94,0,0" VerticalAlignment="Top" Width="150"/>
            <TextBox x:Name="identifying_code" HorizontalAlignment="Left" Height="25" Margin="69,124,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="80"/>
            <Label Content="用户名:" HorizontalAlignment="Left" Height="25" Margin="13,64,0,0" VerticalAlignment="Top" Width="55"/>
            <Label Content="验证码:" HorizontalAlignment="Left" Height="25" Margin="13,124,0,0" VerticalAlignment="Top" Width="55"/>
            <Label Content="密  码:" HorizontalAlignment="Left" Height="25" Margin="13,94,0,0" VerticalAlignment="Top" Width="55"/>
            <Button x:Name="changeButton" Content="看不清换一张" HorizontalAlignment="Left" Height="25" Margin="232,124,0,0" VerticalAlignment="Top" Width="90" BorderThickness="1" Click="changeButton_Click" RenderTransformOrigin="0.5,0.5">
                <Button.RenderTransform>
                    <TransformGroup>
                        <ScaleTransform/>
                        <SkewTransform/>
                        <RotateTransform Angle="0.601"/>
                        <TranslateTransform/>
                    </TransformGroup>
                </Button.RenderTransform>
            </Button>
            <Label Content="用户登录/LOGIN" HorizontalAlignment="Left" Height="40" Margin="27,19,0,0" VerticalAlignment="Top" Width="191" FontSize="24" FontWeight="Bold" FontFamily="STLiti"/>
            <Button x:Name="loginButton" Content="登录" HorizontalAlignment="Left" Height="25" Margin="69,171,0,0" VerticalAlignment="Top" Width="75
                    " Click="loginButton_Click"/>
    
        </Grid>
    </Window>
  • 相关阅读:
    ping
    android Handler总结
    配置网络测试环境的批处理
    shell 的选项解析
    [转] Linux 中共享库的搜索
    SecureCRT 脚本一则(0720.Rev.1)
    使用 Wget 完成自动 Web 认证(推 portal)
    shell 选项解析之需求一:多路径自动补全
    getopts 的简单模拟(09.12 Rev)
    ThinkPHP框架使用心得三 RBAC权限控制(2)简要原理
  • 原文地址:https://www.cnblogs.com/yufan-blog/p/5624895.html
Copyright © 2011-2022 走看看