zoukankan
html css js c++ java
altas(ajax)控件(九):可拖动面板DragPanel
使用非常简单:
<
asp:Panel
ID
="Panel6"
runat
="server"
Width
="250px"
style
="z-index: 20;"
>
<
asp:Panel
ID
="Panel7"
runat
="server"
Width
="100%"
Height
="20px"
BorderStyle
="Solid"
BorderWidth
="2px"
BorderColor
="black"
>
<
div
class
="dragMe"
>
用鼠标拖动
</
div
>
</
asp:Panel
>
<
asp:Panel
ID
="Panel8"
runat
="server"
Width
="100%"
Height
="250px"
Style
="overflow: scroll;"
BackColor
="#0B3D73"
ForeColor
="whitesmoke"
BorderWidth
="2px"
BorderColor
="black"
BorderStyle
="Solid"
>
<
div
>
<
p
>
This panel will reset its position on a postback or page refresh.
</
p
>
<
hr
/>
<
p
>
<%
=
GetContentFillerText()
%>
</
p
>
</
div
>
</
asp:Panel
>
</
asp:Panel
>
<
ajaxToolkit:DragPanelExtender
ID
="DragPanelExtender1"
runat
="server"
TargetControlID
="Panel6"
DragHandleID
="Panel7"
/>
·
TargetControlID
–
指定可以拖动的面板的
ID
·
DragHandleID
–
指定一个
ID
,作为拖动面板的标题栏。
效果如下:http://www.asp.net/AJAX/Control-Toolkit/Live/DragPanel/DragPanel.aspx
查看全文
相关阅读:
Java 字节码解释说明
JVM垃圾回收:G1回收器
JVM 参数
HotSpot 虚拟机对象探秘
JDK 内置图形界面工具
Java 内存模型
在网络设备上调试 Android 程序
.NET MVC异步调用中的Session问题
在MVC的ApiController中实现统一校验
使用 AndroidX86 在虚拟机中作为调试设备
原文地址:https://www.cnblogs.com/hainange/p/6153355.html
最新文章
SpringBoot+Ftp+Nginx搭建静态资源服务器实现静态资源服务的上传
跨域csrf的通俗理解(收藏使用)
java 对list进行切片,截取指定段的list,list集合分页
狂神说《多线程》卖早餐设置互斥锁
springBoot post请求时而成功时而不成功的问题,已解决
JS档导入
NHibernate——Criteria条件查询
JQuery 1.7.2vsdoc.js
获取UserAgent
python 的 requirements.txt
热门文章
selenium切换网页标签窗口
用cat命令合并文件
下载梨视频
用selenium抓取网易云音乐评论
按字节剪切文章标题
选房心得
[EntLib]微软企业库5.0 学习之路 Unity&PIAB 配置
Java 类加载器
Java 字节码指令
JVM垃圾回收
Copyright © 2011-2022 走看看