tab

解决power designer 不能自动生成注释 commont 的解决办法只需要3步:

孤街醉人 提交于 2019-12-01 09:48:50
解决power designer 不能自动生成注释的解决办法只需要3步: 一、快捷键 Ctrl+Shift+X 打开脚本编辑器;(快捷键不能执行的话可以从这个路径执行:Tools --> Excute commands --> Edit/Run Script) 二、将下面天蓝色的字体脚本添加到脚本编辑器里面; Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl ' the current model ' get the current active model Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox "There is no current Model " ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then MsgBox "The current model is not an Physical Data model. " Else ProcessFolder mdl End If ' This routine copy name into comment for each table, each column and each view ' of the current

Bootstrap中Tab(标签页)的使用方法

六眼飞鱼酱① 提交于 2019-12-01 04:54:51
<ul class="nav nav-tabs" role="tablist"> <li role="presentation" class="active"><a href="#home" role="tab" data-toggle="tab">基本信息</a></li> <li role="presentation"><a href="#profile" role="tab" data-toggle="tab">附件</a></li> </ul> <div role="tabpanel" class="tab-pane" id="profile"> <a class="btn btn-warning" id="doUploadFileId"> <i class="fa fa-upload"></i> 上传 </a> <div class="col-sm-12 select-table table-striped"> <table id="bootstrap-fj" data-mobile-responsive="true"></table> </div> </div>   ****** 点击附件tab时显示的即是:下面上传附件这段代码 ####效果如下图: 点击基本信息时加载和显示div的id为home的下面的内容; 点击附件时显示和加载div为profile的内容;

移动端tab切换时下划线的滑动效果

谁都会走 提交于 2019-11-30 02:43:05
1、当前 tab 出现下划线的同时,前一个下划线同时消失(出现方向与消失方向保持一致),伴随过渡效果。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>change tab</title> <style> ul { display: flex; position: absolute; width: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); list-style: none; } li { position: relative; padding: 20px; color: #000; line-height: 1; transition: 0.2s all linear; cursor: pointer; } li::before { content: ""; position: absolute; top: 0; left: 100%; width: 0; height: 100%; border-bottom: 2px solid #f00; transition: 0.2s all linear; } li:active { background: #000; color: #fff; } .active

表格页面

空扰寡人 提交于 2019-11-30 02:09:58
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="bootstrap-3.3.7-dist/bootstrap-3.3.7-dist/css/bootstrap.min.css"> <script src="JQuery/jquery-3.4.1.min.js"></script> <script src="bootstrap-3.3.7-dist/bootstrap-3.3.7-dist/js/bootstrap.js"></script> </head> <body> <form name="myForm"> <table class="table table-bordered" id="tab" name="tab" border="0px"> <tr> <td>编号</td> <td>姓名</td> <td>年龄</td> <td>地址</td> <td>操作</td> <td>操作</td> </tr> <tr id="tr1" onmouseOver="onmouseOverMethod(this)" onmouseOut="onmouseOutMethod(this)" onclick=

AndroidBar_Tab_ViewPager分页界面并滑动Tab

徘徊边缘 提交于 2019-11-29 22:45:06
Jerikc: 在Android4.0中,是通过ActionBar + tab + view Pager的方式实现的,而不是通过传统的TabHost+tab的方式 仿照Android4.0拨号界面实现分页的界面,如下: 1、ViewPager是安卓的扩展包,可以从源代码out/target/common/obj/JAVA_LIBRARIES /android-support-v13-intermediates/classes.jar拷贝,注意是android-support-V13而 不是android-support-v4,因为Activity中getFragmentManager()返回的 android.app.FragmentManager对象,而v4中FragmentAdapter的构造函数参数类型 android.v4.Fragmentmanager,所以你懂的,不兼容,而v13完美兼容。 Jerikc: jar包所在位置是\android-sdk\extras\android\support\v13\android-support-v13.jar 当然在v13目录下,有一个Support13Demos,大家可以用来学习参考! 步骤如下: 1. launch eclipse --> File --> New --> Project --> Android Project

【原创】如何在vim中使用tab进行python代码补全

拜拜、爱过 提交于 2019-11-29 07:25:14
Pydiction : Tab-complete your Python code Pydiction 允许你在 Vim 中实现 TAB 代码补全, 可以补全的内容包括:标准的、自定义的,以及第三方模块和包。外加关键字、BIFs,和字符串。 Pydiction 由 3 个主要文件构成: python_pydiction.vim -- 该文件为 Vim 的 plugin 文件,实现 Python 文件的 TAB 补全功能。 complete-dict -- 该文件为 Vim 的 dictionary 文件,其中包含 Python 关键字和模块结构等信息。是 plugin 进行补全时所查找的参考文件。 pydiction.py -- (可选)该文件是 Python script 文件,用于生成 dictionary 文件。可以通过执行该脚本添加更多的可 TAB 补全模块。 用法 ===== 在 Vim 中输入部分 Python 关键字、模块名、属性或方法名,然后按 Tab 键以弹出补全信息。 例如, 输入 os.p<Tab> 会弹出 os.pardir os.path os.pathconf( os.pathconf_names os.pathsep os.pipe( ... 如果你发现在 TAB 完成菜单中得到的结果并不是你想要的,可能的一种原因是你没有设置 Vim 忽略大小写

理解ConcurrentHashMap源码

社会主义新天地 提交于 2019-11-28 11:24:36
ConcurrentHashMap源码分析 其实ConcurrentHashMap我自己已经看过很多遍了,但是今天在面试阿里的时候自己在描述ConcurrentHashMap发现自己根本讲不清楚什么是ConcurrentHashMap,以及里面是怎么实现的,搞的我突然发现自己什么都不懂,所以我想要再次的来分析一下这个源码,完全理解ConcurrentHashMap,而不是以为自己懂了,实际上自己不懂。 首先我们看一下put方法,put方法会调用到putVal方法上面。 final V putVal(K key, V value, boolean onlyIfAbsent) { if (key == null || value == null) throw new NullPointerException(); int hash = spread(key.hashCode()); //如果put进去的是个链表,这个参数表示链表的大小 int binCount = 0; for (Node<K,V>[] tab = table;;) { Node<K,V> f; int n, i, fh; if (tab == null || (n = tab.length) == 0) //初始化链表 tab = initTable(); //如果这个槽位没有数据 else if ((f =

取消tabBar被激活tab的下划线

和自甴很熟 提交于 2019-11-28 07:41:13
  TabBar( indicator: const BoxDecoration(), //取消下划线        unselectedLabelColor: Colors.black38, //未被激活样式的颜色        indicatorColor: Colors.black54, //被激活的字体颜色        indicatorSize: TabBarIndicatorSize.label, //指示器长度和标签长度是一样的        indicatorWeight: 1.0, //下划线粗度 labelColor: Colors.black, tabs: <Widget>[ Tab(child: Text( '充电', style: TextStyle( fontSize: ScreenUtil.getInstance().setSp(38) ), ), ), Tab(child: Text( '停车', style: TextStyle( fontSize: ScreenUtil.getInstance().setSp(38) ), ), ), Tab(child: Text( '用车', style: TextStyle( fontSize: ScreenUtil.getInstance().setSp(38) ), ), ), ], ),    来源

pdm文件name与comment互相同步

非 Y 不嫁゛ 提交于 2019-11-28 01:03:49
1.使用Powerdesigner工具将pdm文件的name同步至comment。 点击Tools->Execute Commands->Edit/Run Scripts 输入脚本: Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox "There is no current Model" ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then MsgBox "The current model is not an Physical Data model." Else ProcessFolder mdl End If Private sub ProcessFolder(folder) Dim Tab for each Tab in folder.tables if not tab.isShortcut then tab.comment=tab.name Dim col for each col in tab.columns if col.comment="" then col.comment=col.name end if next end if

python命令行添加Tab键自动补全

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-27 05:07:42
1、编写一个tab的自动补全脚本,名为tab.py # !/usr/bin/python # python tab complete import sys import readline import rlcompleter import atexit import os # tab completion readline.parse_and_bind( ' tab: complete ' ) # history file histfile = os.path.join(os.environ[ ' HOME ' ], ' .pythonhistory ' ) try : readline.read_history_file(histfile) except IOError: pass atexit.register(readline.write_history_file, histfile) del os, histfile, readline, rlcompleter 2、在python中查看python的模块路径信息 >>> import sys >>> sys.path [ '' , ' /usr/lib/python26.zip ' , ' /usr/lib/python2.6 ' , ' /usr/lib/python2.6/plat-linux2 ' , ' /usr