我对DIV/CSS一窍不通,时间紧急,需要完成WEB页面设计,因此想到了偷懒的方法,如果使用Visual Studio 2017 ASP.NET在设计WEB页面时让控件可以自由拖动,那就太好啦!
一、添加一个WEB窗体
窗体命名为Login
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="WebApplication1.Login" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- </div>
- </form>
- </body>
- </html>
复制代码
二、设置DIV绝对坐标
1、点击【设计】
2、点击DIV
鼠标点击 style后面的 ... 按钮
这样控件就可以任意布局,任意拖动控件了。
下面我在页面上插入一个LABEL控件,然后拖到页面中心位置
注意:只有当鼠标指向控件,出现一个十字架的时候,才能够拖得动控件。
来源:https://blog.csdn.net/ba_wang_mao/article/details/108097223 免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |