🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
<p><strong><span style="font-size:16px;">Move方法</span></strong></p> <p>移动控件。不支持命名参数。</p> <p><br /> </p> <p><span></span></p> <p class="label"><b>语法</b></p> <p><span class="emp"><i>object</i></span>.<b>Movable<b>&nbsp;<i>Left</i></b>,<i>Top</i>,<i>Width</i>,<i>Height</i></b></p> <p><br /> </p> <p><br /> </p> <p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;">该<b>移动</b>方法的语法有以下部分:</p> <div class="tablediv" style="color:#000000;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><table class="dtTABLE" style="border:1px solid #BBBBBB;"><tbody><tr><th width="18%">部分</th> <th width="82%">描述</th> </tr> <tr><td width="18%" style="color:#2A2A2A;"><i>Object</i></td> <td width="82%" style="color:#2A2A2A;">可选的。评估为“适用于”列表中的对象的对象表达式。如果<i><i>object</i></i>被省略,则具有焦点的表单被假定为<i><i>object</i></i>。</td> </tr> <tr><td width="18%" style="color:#2A2A2A;"><i>Left</i></td> <td width="82%" style="color:#2A2A2A;">需要。单精度值表示<i><i>object</i></i>左边缘的水平坐标(x轴)。</td> </tr> <tr><td width="18%" style="color:#2A2A2A;"><i>Top</i></td> <td width="82%" style="color:#2A2A2A;">可选的。单精度值,表示<i><i>object</i></i>上边缘的垂直坐标(y轴)。</td> </tr> <tr><td width="18%" style="color:#2A2A2A;"><i>Width</i></td> <td width="82%" style="color:#2A2A2A;">可选的。单精度值指示<i>object</i>的新宽度。</td> </tr> <tr><td width="18%" style="color:#2A2A2A;"><i>Height</i></td> <td width="82%" style="color:#2A2A2A;">可选的。单精度值表示<i><i>object</i></i>的新高度。</td> </tr> </tbody> </table> </div> <p><br /> </p> <p><br /> </p> <p class="label"><b>说明</b></p> <p><b></b></p> <p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><b只有<i>Left参数是必需的。但是,要指定任何其他参数,必须在您要指定的参数之前指定出现在语法中的所有参数。例如,你不能指定<i>Width</i>,而不指定<i>Left</i>和<i>Top</i>。任何未指定的尾随参数保持不变。</b只有<i></p> <p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;">对于Frame控件中的窗体和控件,坐标系始终以<strong>缇</strong>为单位。在屏幕上移动窗体或Move Frame中的控件始终相对于左上角的原点(0,0)。当在Form对象或<strong>PictureBox</strong><strong>(或</strong><strong>MDIForm</strong><strong>对象上的MDI子窗体)</strong>中移动控件时,将使用容器对象的坐标系。在设计时使用<strong>ScaleMode</strong>属性设置坐标系或测量单位。您可以使用<strong>Scale</strong>方法在运行时更改坐标系。</p> <h4 class="dtH4" style="color:#000000;font-size:1.077em;font-family:'Segoe UI Semibold', 'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-weight:normal;"><b>例</b></h4> <p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><b>此示例使用<b>Move</b>方法在屏幕上移动一个窗体。</b></p> <pre class="prettyprint lang-vb">Private Sub Form_Click () Dim Inch, Msg ' Declare variables. Msg = "Choose OK to resize and move this form by " Msg = Msg &amp; "changing the value of properties." MsgBox Msg ' Display message. Inch = 1440 ' Set inch in twips. Width = 4 * Inch ' Set width. Height = 2 * Inch ' Set height. Left = 0 ' Set left to origin. Top = 0 ' Set top to origin. Msg = "Now choose OK to resize and move this form " Msg = Msg &amp; "using the Move method." MsgBox Msg ' Display message. Move Screen.Width - 2 * Inch, Screen.Height - Inch, 2 * Inch, Inch End Sub</pre>