Delphi 快捷鍵 讓你更像高手!! (form DFW)

>>代碼模板 : CTRL+J
>>代碼整塊移動 : CTRL+SHIFT+I(右移) CTRL+SHIFT+U(左移)
>>選中窗體 : 先選中任一控件,SHIFT+鼠標左鍵
>>將鼠標指向變量名、單元名、類名,再用 CTRL+鼠標左鍵 可找到相應的說明
>>在過程、函數、事件內部, SHIFT+CTRL+向上的方向鍵  可跳躍到相應的過程、函數、事件的定義

    相反,在過程、函數、事件的定義處,SHIFT+CTRL+向下的方向鍵 可跳躍到具體過程、函數、事件內部

>>CTRL+ SHIFT + C:編寫申明或者補上函數.
  如:
  procedure TT.A(AA: string);  //函數申明
  安下:CTRL+ SHIFT + C後,會寫上
  procedure TT.A(AA: string);
  begin
  end;

>>SHIFT+CTRL+E 顯示 EXPLORER ,我覺的這個比較好

>>用crtl+d就可以做到代碼排列,比這個要方便多了,當然裏面還有其它的功能
 這裏添加
 shift +f12 快速查找窗體並打開
 f11 屬性
 f9運行
 crtl+f9 編譯

>>crtl + shift + n (n=1,2,3,4......)
定義書籤
crtl + n (n=1,2,3,4......)
跳到書籤n  

>>

來自:honestman, 時間:2001-10-23 14:03:00, ID:687352
下面的快捷鍵大部分在Delphi 5.0的菜單中找不到,其中有一些還是非常有用的。

Ctrl+PageUp      將光標移至本屏的第一行,屏幕不滾動。
Ctrl+PageDown    將光標移至本屏的最後一行,屏幕不滾動。
Ctrl+↓          向下滾動屏幕,光標跟隨滾動不出本屏。
Ctrl+↑          向上滾動屏幕,光標跟隨滾動不出本屏。
Ctrl+Shift+NUM   在光標行設置最多九個臨時標誌號,對臨時切換非常有用。
    行的左邊將出現一本書,封面有NUM,再按一次取消設置。  
Ctrl+NUM         直接將光標跳到NUM處,NUM是用Ctrl+Shift+NUM設置的標號。
    NUM不能用小鍵盤。
Ctrl+Home        將光標移至文件頭。
Ctrl+End         將光標移至文件尾。
Ctrl+B           Buffer List窗口。
Ctrl+I           同Tab鍵。
Ctrl+M           同Enter鍵。
Ctrl+N           同Enter鍵,但光標位置保持不變。
Ctrl+T           刪除光標右邊的一個單詞。
Ctrl+Y           刪除光標所在行。

Ctrl+Shift+↑    光標在函數體內時,將光標快速移至當前函數聲明處。
Ctrl+Shift+↓    光標在函數聲明行時,將光標快速移至函數定義處。
Ctrl+Shift+C     聲明一個過程或函數後,直接生成過程或函數的名稱、begin、end;
Ctrl+Shift+E     光標在Edit窗口和Explorer窗口間切換。
Ctrl+Shift+G     插入GUID。
Ctrl+Shift+J     彈出Delphi語句提示窗口,選擇所需語句將自動完成一條語句。
Ctrl+Shift+T     在光標行加入To-Do註釋。
Ctrl+Shift+Y     刪除光標之後至本行末尾之間的文本。

Ctrl+F3          Call Stack窗口。
Ctrl+F4          等於File菜單中的Close項。

Ctrl+鼠標轉輪    加速滾屏。

Shift+F8         調試時彈出CPU窗口。
Shift+F10        等於鼠標右鍵(Windows快捷鍵)。

Alt+F4           關閉所有編輯框中打開的源程序文件,但不關閉項目。
CTRL+C 複製
CTRL+V 粘貼
CTRL+X 剪切
CTRL+Z 還原(Undo)
CTRL+S 保存
CTRL+ENTER 定位到單元文件
Shitf+箭頭 選擇
如果同時按住Alt +Shitf+箭頭, 再進行選擇, 則是一種區域選擇, 而不是行選擇, 粘貼的
時候也就是插入粘貼了.
F9 運行
CTRL+ F9編譯
F8 STEP OVER (步進式調試不進入子過程)
F7 TRACE INTO (步進式調試同時追蹤進入子過程)
F11,F12 切換EDITOR,INSPECTOR,FORM DESIGNER.
CTRL+ALT+F11 彈出工程管理器
CTRL+F彈出查找對話框
CTRL+R彈出替換對話框
CTRL+ Shitf+C 類過程代碼補全(只要在定義部分定義一過程或一函數頭則自動幫你生成
實現部分的套架;反之也成)
象這些都是菜單中有的快捷方式, 其它的您可以自己去找, 就不無聊了, 下面是一些不是
很容易找到 (或者比較容易忘記的快捷操作) 但很有用的快捷操作:
PB的SHITF+TAB好象很酷, 其實DELPHI也有.
另外就是在PB中, 如果你對選擇的代碼使用TAB鍵, 就是所有的選擇向後跳格, 但是DELPHI
中怎樣跳格呢? 其實也是有辦法的, 就是CTRL+K,I向後, CTRL+K,U向前.
如果你是在接口函數的實現部分, 那麼 CTRL+SHIFT+上箭頭 就可以到聲明部分. 同樣再
CTRL+SHIFT+下箭頭 又回到實現部分
是不是覺得DELPHI好象沒有標籤功能, CTRL+SHIFT+數字 定義標籤(當然因爲數據鍵只有10
個, 所以您也只能定義從0~9的10個標籤), CTRL+數字 就是定位到相應的標籤的位置.
有時候反覆輸入什麼東西是不是很繁? CTRL+SHIFT+R錄製鍵盤宏, 比如我經常做的就是:
下箭頭-下箭頭-HOME-回車-CTRL+V, 再鍵入一次CTRL+SHIFT+R錄製完成, 之後您可以使用
CTRL+SHIFT+P, 重複宏,還是省了一些事的.
另外在DELIPHI中有一個很有用的快鍵極其有用
這就是CTRL+J;列如:在一過程中你輸入ifb後再按CTRL+J你回去看看效果吧,可能你會大
喫一驚。這就是Code Insight.
另外還有一些快捷都是很少用到的, 我一時也想不起來, 您要是有興趣就在幫助索引中輸
入 "Classic keystroke mapping", 自己查看吧.

>>
來自:cacao_cacao, 時間:2001-10-23 14:05:00, ID:687359
取消書籤: 在書籤N處,再按一次 SHIFT + CTRL + N
>>
來自:fossil, 時間:2001-10-23 18:01:00, ID:687832
Ctrl+space 代碼補全  
來自:小人物, 時間:2001-10-23 19:50:00, ID:687967
看大家這麼熱心,我也補充一點,[:)]
Ctrl+K+O,Ctrl+K+N  將選中的整塊代碼都轉爲小寫或大寫  
來自:china_peng, 時間:2001-10-23 20:03:00, ID:687973
Ctrl+F 查找
Ctrl+L 繼續查找  

來自:pingbaoshi, 時間:2001-10-23 20:13:00, ID:687980
ctrl+r  
來自:walkyou, 時間:2001-10-23 21:08:00, ID:688048
[blue][b]在Inspector,[/b][/blue]可以用Ctrl+Tab切換Properties頁和Events頁
Ctrl+Enter可進入相應的設置,如在Preperties頁的Font按Ctrl+Enter
在Events中按Ctrl+Enter可進入相應代碼編輯  
.
來自:xianjun, 時間:2001-10-24 11:44:00, ID:688807
還有一招,我經常用的,不知大家常不常用
按住ALT用鼠標選擇文本
或者按住ALT加SHIFT,用方向鍵選擇文本
沒試過就趕快去試試![:D]  
來自:dlnew, 時間:2001-10-24 11:57:00, ID:688849
在form上放一個tedit控件,然後在代碼中寫入“edit1.”,稍等一下,會出現提示。
在“edit1.”未寫入前,要想使用這個提示功能,可以按住windows鍵,然後按空白鍵。
(只有windows鍵盤可以用此功能!)  
來自:Passion, 時間:2001-11-3 14:04:00, ID:703999
Ctrl+Backspace
後退刪除一個詞。好像是到 . 爲止。
來自:程雲, 時間:2001-11-4 13:04:00, ID:705685
看來,基本上都讓你們說完了。

我補充一點,
按着Ctrl+Alt 之後,可用鼠標選擇一個矩形塊中的代碼,
並可比它進行復制,粘沾,
這是Delphi獨有的,而且非常有用的。
來自:redsky.l, 時間:2001-11-4 13:52:00, ID:705742
如象還有一個:Ctrl+鼠標左鍵,指向代碼時……
點一下就知道了!  
來自:gxlzx, 時間:2001-11-10 15:27:00, ID:721406
從Delphi愛好者網站載的一篇文章


Delphi之快速設計(界面設計篇)
西安      梁  明

--------------------------------------------------------------------------------

衆所周知,Delphi已經是RAD之中的RAD了,但本人的目的是更加充分地挖掘出Delphi的優秀品質,哎,人的胃口呀......
本人打算從兩個方面來談論這個話題:界面設計及程序設計.
本文介紹界面的快速設計:
如果你的手在鍵盤上,我想你不太會願意再去伸手拿鼠標來移動組件吧,再說鼠標也不太精確(下面提到的均針對鍵盤操作,能用鼠標操作完成的不在此列),那好,以下快捷鍵及一些技巧請各位看官"收好".

一、以下快捷鍵指的是對窗體表格上組件的操作:
●快捷鍵1:
【Ctrl+UP】~向上移動當前組件(精確);
【Ctrl+Left】~向左移動當前組件(精確);
【Ctrl+Down】~向下移動當前組件(精確);
【Ctrl+Right】~向右移動當前組件(精確);
注:
以上快接鍵中再加Shift進行組合(比如【Ctrl+Shift+Right】)即可實現粗略調整;
●快捷鍵2:
【Shift+UP】~減小當前組件的高度;
【Shift+Left】~減小當前組件的寬度;
【Shift+Down】~增加當前組件的高度;
【Shift+Right】~增加當前組件的寬度;
注:
以上Up,Left等指的是方向鍵;


二、以下快捷鍵指的是在對象觀察器上的操作:
●快捷鍵3:
【F11】~切換到對象觀察器(注:如果連續按F11則將實現在對象觀察器、窗體表格、代碼編輯器之間切換);
【Ctrl+Down】~下拉當前窗體的組件列表;
【Ctrl+Enter】~編輯帶...的屬性值(如組件的字體TFont);
【Alt+Down】~下拉組件當前屬性選單隊列(如Align->alNone,alLeft,alRight等);
【Ctrl+Tab】~在屬性列表及事件列表中切換;


三、菜單快捷鍵:
●快捷鍵4:
【F12】,【Shift+F12】,【Ctrl+F12】等在Delphi的菜單中已有定義的在此不必羅嗦.

技巧:
如何選擇被組件覆蓋了的窗體(比如某組件的Align屬性爲alClient)?
方法一、按ESC鍵,一層一層的往後選,直到窗體被選爲當前組件爲止;
方法二、按Shift的同時單擊鼠標左鍵,一步即可選定(推薦);
方法三、按F11選定對象觀察器,然後切換到屬性列表,再用上面快捷鍵3中的【Ctrl+Down】.


版主:梁明
日期:1999-03-01
E-mail:[email protected]
來自:西方失敗, 時間:2001-11-25 16:29:00, ID:749699
Ctrl + O + U     將選中的代碼的大小寫顛倒
來自:RedBaby, 時間:2002-1-3 23:36:00, ID:833105
1.SHIFT+鼠標左鍵   先選中任一控,按鍵後可選中窗體
 2.Shift+F8         調試時彈出CPU窗口。
 3.Shift+F10        等於鼠標右鍵(Windows快捷鍵)。
 4.Shitf+箭頭       選擇
 5.shift +F12       快速查找窗體並打開
 6.F7              (步進式調試同時追蹤進入子過程)
 7.F8              (步進式調試不進入子過程)
 8.F9               運行
 9.F12              切換EDITOR,FORM
 10.Alt+F4          關閉所有編輯框中打開的源程序文件,但不關閉項目。
 11.ALT+鼠標左鍵    可以塊選代碼,刪除對齊的重複代碼非常有用。
 12.Ctrl+F9         編譯
 13.Ctrl+shift+N(n=1,2,3,4......)  定義書籤
 14.Ctrl+n(n=1,2,3,4......)跳到書籤n
 15.CTRL +SHIFT+N    在書籤N處,再按一次 取消書籤:
 16.Ctrl+PageUp      將光標移至本屏的第一行,屏幕不滾動。
 17.Ctrl+PageDown    將光標移至本屏的最後一行,屏幕不滾動。
 18.Ctrl+↓          向下滾動屏幕,光標跟隨滾動不出本屏。
 19.Ctrl+↑          向上滾動屏幕,光標跟隨滾動不出本屏。
 20.Ctrl+Home        將光標移至文件頭。
 21.Ctrl+End         將光標移至文件尾。
 22.Ctrl+B           Buffer List窗口。
 23.Ctrl+I           同Tab鍵。
 24.CTRL+J (彈出Delphi語句提示窗口,選擇所需語句將自動完成一條語句。)代碼模板
 25.Ctrl+M           同Enter鍵。
 26.Ctrl+N           同Enter鍵,但光標位置保持不變。
 27.Ctrl+T           刪除光標右邊的一個單詞。
 28.Ctrl+Y           刪除光標所在行。
 29.CTRL+C 複製
 30.CTRL+V 粘貼
 31.CTRL+X 剪切
 32.CTRL+Z 還原(Undo)
 33.CTRL+S 保存
 34.Ctrl+F 查找
 35.Ctrl+L 繼續查找
 36.Ctrl+r  替換
 37.CTRL+ENTER       定位到單元文件
 38.Ctrl+F3          Call Stack窗口。
 39.Ctrl+F4          等於File菜單中的Close項。
 40.Ctrl+Backspace   後退刪除一個詞。好像是到 . 爲止。
 41.Ctrl+鼠標轉輪    加速滾屏。
 42.Ctrl+O+U         將選中的整塊代碼都轉爲小寫或大寫
 41.Ctrl+Shift+G     插入GUID。
 42.Ctrl+Shift+T     在光標行加入To-Do註釋。
 43.Ctrl+Shift+Y     刪除光標之後至本行末尾之間的文本。
 44.CTRL+SHIFT+C     編寫申明或者補上函數.
 45.CTRL+SHIFT+E     顯示 EXPLORER ,我覺的這個比較好
 46.CTRL+SHIFT+U     代碼整塊移動(左移)
 47.CTRL+SHIFT+I     代碼整塊移動(右移)
 48.CTRL+SHIFT+↑    在過程、函數、事件內部, 可跳躍到相應的過程、函數、事件的定義
 49.CTRL+SHIFT+↓    在過程、函數、事件的定義處, 可跳躍到具體過程、函數、事件內部
 50.Ctrl+Alt+c  註釋塊
 51.Ctrl+Alt+u  取消註釋塊
 52.Ctrl+Alt+h  生成頭(更詳細的設置在GExperts配置的Editor Experts屬性頁)
   

來自:doxpix, 時間:2002-1-4 9:37:00, ID:833376
呵呵,完全正式版出籠啦。
歡迎大家批評指正。
Enjoy:-)
                      From doxpix
                       2002.1.4

___________________________________________________________________________________________
DELPHI中的快捷方式一覽(完全正式版)

   ::::Created By RedBaby 2002.1.3::::
   ::::Modified By doxpix 2001.1.4::::
   ::::CopyRight DFW 2002::::


 1.SHIFT+鼠標左鍵    先選中任一控件,按鍵後可選中窗體(選中控件後按Esc效果一樣)
 2.Shift+F8          調試時彈出CPU窗口。
 3.Shift+F10         等於鼠標右鍵(Windows快捷鍵)。
 4.Shitf+箭頭        選擇
 5.shift +F12        快速查找窗體並打開
 6.F7               (步進式調試同時追蹤進入子過程)
 7.F8               (步進式調試不進入子過程)
 8.F9                運行
 9.F12               切換EDITOR,FORM
 10.Alt+F4           關閉所有編輯框中打開的源程序文件,但不關閉項目
 11.ALT+鼠標左鍵      可以塊選代碼,用來刪除對齊的重複代碼非常有用
 12.Ctrl+F9          編譯
 13.Ctrl+shift+N(n=1,2,3,4......)  定義書籤
 14.Ctrl+n(n=1,2,3,4......)跳到書籤n
 15.CTRL +SHIFT+N    在書籤N處,再按一次 取消書籤
 16.Ctrl+PageUp      將光標移至本屏的第一行,屏幕不滾動
 17.Ctrl+PageDown    將光標移至本屏的最後一行,屏幕不滾動
 18.Ctrl+↓          向下滾動屏幕,光標跟隨滾動不出本屏
 19.Ctrl+↑          向上滾動屏幕,光標跟隨滾動不出本屏
 20.Ctrl+Home        將光標移至文件頭
 21.Ctrl+End         將光標移至文件尾
 22.Ctrl+B           Buffer List窗口
 23.Ctrl+I           同Tab鍵
 24.CTRL+J           (彈出Delphi語句提示窗口,選擇所需語句將自動完成一條語句)代碼模板
 25.Ctrl+M           同Enter鍵。
 26.Ctrl+N           同Enter鍵,但光標位置保持不變
 27.Ctrl+T           刪除光標右邊的一個單詞
 28.Ctrl+Y           刪除光標所在行
 29.CTRL+C           複製
 30.CTRL+V           粘貼
 31.CTRL+X           剪切
 32.CTRL+Z           還原(Undo)
 33.CTRL+S           保存
 34.Ctrl+F           查找
 35.Ctrl+L           繼續查找
 36.Ctrl+r           替換
 37.CTRL+ENTER       定位到單元文件
 38.Ctrl+F3          彈出Call Stack窗口
 39.Ctrl+F4          等於File菜單中的Close項
 40.Ctrl+Backspace   後退刪除一個詞,直到遇到一個分割符
 41.Ctrl+鼠標轉輪    加速滾屏
 42.Ctrl+O+U         切換選擇塊的大小寫(注意鬆開O後再按U,Ctrl保持按下)
 43.Ctrl+K+O         切換選擇塊爲小寫(注意鬆開K後再按O,Ctrl保持按下)
 44.Ctrl+K+N         切換選擇塊爲大寫(注意鬆開K後再按N,Ctrl保持按下)
 45.Ctrl+Shift+G     插入GUID
 46.Ctrl+Shift+T     在光標行加入To-Do註釋
 47.Ctrl+Shift+Y     刪除光標之後至本行末尾之間的文本
 48.CTRL+SHIFT+C     編寫申明或者補上函數,絕好!!!
 49.CTRL+SHIFT+E     顯示EXPLORER
 50.Ctrl+Tab         在Inspector中切換Properties頁和Events頁
 51.CTRL+SHIFT+U     代碼整塊左移2個空格位置
 52.CTRL+SHIFT+I     代碼整塊右移2個空格位置
 53.CTRL+SHIFT+↑    在過程、函數、事件內部, 可跳躍到相應的過程、函數、事
                     件的定義(在interface和implementation之間來回切換)
 54.CTRL+SHIFT+↓    在過程、函數、事件的定義處, 可跳躍到具體過程、函數、事件內部(同上)
 55.Tab              在object inspector窗口按tab鍵將光標移動到屬性名區,然後鍵入屬性名的開頭
                     字母可快速定位到該屬性
 56.Ctrl+Alt         按着Ctrl+Alt之後,可用鼠標選擇一個矩形塊中的代碼,
                     並可比它進行復制,粘貼
 57.Shift+↓、↑、→、← 以1像素單位更改所選控件大小
 58.Ctrl+↓、↑、→、←以1像素單位更改所選控件位置
 59.Ctrl+E           快速選擇(呵呵,試試吧,很好玩的)                                                            
---------GExperts中---------
 60.Ctrl+Alt+c       註釋塊
 61.Ctrl+Alt+u       取消註釋塊
 62.Ctrl+Alt+h       生成頭(更詳細的設置在GExperts配置的Editor Experts屬性頁)
 63.Ctrl+Alt+o       選擇對應分隔符之間的語句
 64.Ctrl+Alt+v       在對應的分隔符之間來回跳轉(與已有快捷鍵有衝突,請更改)
---------GExperts中---------
___________________________________________________________________________________________  

來自:xianjun, 時間:2002-1-4 12:47:00, ID:833948
還沒結束啊!
不用這麼麻煩,DELPHI的HELP中把所有的快捷鍵都列出來了。
而且各種配置的快捷鍵並不是完全一致的!
在Help中查找keyboard shortcuts就可以了,列一部份如下:
These editor keyboard shortcuts apply to the [red][b]Default[/b][/red] keystroke mapping scheme.

Shortcut  Action or command

F1  Help|Topic Search
Ctrl+F1  Help|Topic Search
F3  Search|Search Again

Ctrl+E  Search|Incremental Search
Ctrl+F  Search|Find
Ctrl+I  Inserts a tab character
Ctrl+j  Templates pop-up menu
Ctrl+N  Inserts a new line
Ctrl+P  Causes next character to be interpreted as an ASCII sequence
Ctrl+R  Search|Replace
Ctrl+S  File|Save
Ctrl+T  Deletes a word

Ctrl+Y  Deletes a line
Ctrl+Z  Edit|Undo
Ctrl+<space bar>  Code Completion pop-up window

Ctrl+Shift+g  Inserts a new Globally Unique Identifier (GUID)
Ctrl+Shift+I  Indents block
Ctrl+Shift+U  Outdents block
Ctrl+Shift+Y  Deletes to the end of a line
Ctrl+Shift+Z  Edit|Redo
Ctrl+Shift+<space bar>  Code Parameters pop-up window

Alt+[  Finds the matching delimiter (forward)
Alt+]  Finds the matching delimiter (backward)

End  Moves to the end of a line
Home  Moves to the start of a line

Enter  Inserts a carriage return
Ins  Turns insert mode on/off
Del  Deletes the character to the right of the cursor
Backspace  Deletes the character to the left of the cursor
Tab  Inserts a tab
Space  Inserts a blank space
Left Arrow  Moves the cursor left one column, accounting for the autoindent setting
Right Arrow  Moves the cursor right one column, accounting for the autoindent setting
Up Arrow  Moves up one line

Down Arrow  Moves down one line
Page Up  Moves up one page
Page Down  Moves down one page

Ctrl+Left Arrow  Moves one word left
Ctrl+Right Arrow  Moves one word right
Ctrl+Tab  Moves to the next code page (or file)
Ctrl+Shift+Tab  Moves to the previous code page (or file)
Ctrl+Backspace  Deletes the word to the right of the cursor
Ctrl+Home  Moves to the top of a file
Ctrl+End  Moves to the end of a file

Ctrl+Del  Deletes a currently selected block
Ctrl+Space  Inserts a blank space
Ctrl+PgDn  Moves to the bottom of a screen
Ctrl+PgUp  Moves to the top of a screen
Ctrl+Up Arrow  Scrolls up one line
Ctrl+Down Arrow  Scrolls down one line
Ctrl+Enter  Opens file at cursor

Shift+Tab  Moves the cursor to the left one tab position
Shift+Backspace  Deletes the character to the left of the cursor
Shift+Left Arrow  Selects the character to the left of the cursor

Shift+Right Arrow  Selects the character to the right of the cursor
Shift+Up Arrow  Moves the cursor up one line and selects from the left of the starting cursor position
Shift+Down Arrow  Moves the cursor down one line and selects from the right of the starting cursor position
Shift+PgUp  Moves the cursor up one screen and selects from the left of the starting cursor position
Shift+PgDn  Moves the cursor down one line and selects from the right of the starting cursor position

Shift+End  Selects from the cursor position to the end of the current line
Shift+Home  Selects from the cursor position to the start of the current line
Shift+Space  Inserts a blank space
Shift+Enter  Inserts a new line with a carriage return

Ctrl+Shift+Left Arrow  Selects the word to the left of the cursor
Ctrl+Shift+Right Arrow  Selects the word to the right of the cursor
Ctrl+Shift+Home  Selects from the cursor position to the start of the current file

Ctrl+Shift+End  Selects from the cursor position to the end of the current file
Ctrl+Shift+PgDn  Selects from the cursor position to the bottom of the screen
Ctrl+Shift+PgUp  Selects from the cursor position to the top of the screen
Ctrl+Shift+Tab  Moves to the previous page
Shift+Alt+arrow  Selects column-oriented blocks
Click+Alt+mousemove  Selects column-oriented blocks
Ctrl+O+C  Turns on column blocking
Ctrl+O+K  Turns off column blocking

Alt+Backspace  Edit|Undo
Alt+Shift+Backspace  Edit|Redo
Alt+Shift+Left Arrow  Selects the column to the left of the cursor
Alt+Shift+Right Arrow  Selects the column to the right of the cursor
Alt+Shift+Up Arrow  Moves the cursor up one line and selects the column from the left of the starting cursor position
Alt+Shift+Down Arrow  Moves the cursor down one line and selects the column from the left of the starting cursor position

Alt+Shift+Page Up  Moves the cursor up one screen and selects the column from the left of the starting cursor position
Alt+Shift+Page Down  Moves the cursor down one line and selects the column from the right of the starting cursor position
Alt+Shift+End  Selects the column from the cursor position to the end of the current line
Alt+Shift+Home  Selects the column from the cursor position to the start of the current line

Ctrl+Alt+Shift+Left Arrow  Selects the column to the left of the cursor

Ctrl+Alt+Shift+Right Arrow  Selects the column to the right of the cursor
Ctrl+Alt+Shift+Home  Selects the column from the cursor position to the start of the current file
Ctrl+Alt+Shift+End  Selects the column from the cursor position to the end of the current file
Ctrl+Alt+Shift+Page Up  Selects the column from the cursor position to the bottom of the screen
Ctrl+Alt+Shift+Page Down  Selects the column from the cursor position to the top of the screen  
來自:bbs-wqt, 時間:2003-4-7 19:01:00, ID:1746545
找一下幫助,查找shortcuts,什麼都有了。

Ctrl+Ins  Edit|Copy
Shift+Del  Edit|Cut
Shift+Ins  Edit|Paste

Ctrl+C  Edit|Copy
Ctrl+V  Edit|Paste
Ctrl+X  Edit|Cut

Breakpoint view

Ctrl+V  View Source
Ctrl+S  Edit Source
Ctrl+E  Edit Breakpoint
Enter  Edit Breakpoint
Ctrl+D  Delete Breakpoint
Del  Delete Breakpoint
Ctrl+A  Add Breakpoint
Ins  Add Breakpoint
Ctrl+N  Enable Breakpoint

Call stack view

Ctrl+V  View Source
Ctrl+E  Edit Source (Delphi only)
Space  View Source (Epsilon only)
Ctrl+Enter  Edit Source (Epsilon only)

Message view

Ctrl+V  View Source
Space  View Source
Ctrl+S  Edit Source
Ctrl+Enter  Edit Source

Watch view

Ctrl+E  Edit Watch
Enter  Edit Watch
Ctrl+A  Add Watch
Ins  Add Watch
Ctrl+D  Delete Watch
Del  Delete Watch

Shortcut  Action or command

F5  Search|Find (forward from cursor position)
F6  Search|Replace (forward from cursor position)

Alt+F5  Search|Find (backward from cursor position)
Alt+F6  Search|Replace (backward from cursor position)
Alt+F9  Displays the local menu

Shift+F4  Tiles windows horizontally
Shift+F5  Search|Search Again
Shift+F6  Repeats the last Search|Replace operation


Esc  Cancels a command at the prompt
Del  Deletes a character or block at the cursor
Asterisk (*)/keypad  Edit|Undo
Backspace  Deletes the character to the left of the cursor
Shift+Backspace  Deletes the character to the left of the cursor
Tab  Inserts a tab character
Enter  Inserts a new line with a carriage return

Ctrl+B  Moves to the bottom of the window
Ctrl+C  Centers line in window

Ctrl+D  Moves down one screen
Ctrl+E  Moves up one screen
Ctrl+K  Deletes to the beginning of a line
Ctrl+M  Inserts a new line with a carriage return
Ctrl+S  Performs an incremental search
Ctrl+T  Moves to the top of the window
Ctrl+U  Edit|Redo
Ctrl+Backspace  Deletes the word to the left of the cursor
Ctrl+Enter  Inserts an empty new line
Ctrl+- (dash)  Closes the current page

Alt+A  Marks a non-inclusive block
Alt+B  Displays a list of open files
Alt+C  Mark the beginning of a column block
Alt+D  Deletes a line
Alt+G  Search|Go to line number
Alt+I  Toggles insert mode
Alt+K  Deletes of the end of a line
Alt+L  Marks a line
Alt+M  Marks an inclusive block
Alt+N  Displays the contents of the next page
Alt+P  Prints the selected block
Alt+Q  Causes next character to be interpreted as an ASCII sequence

Alt+R  Reads a block from a file
Alt+S  Search|Find
Alt+T  Search|Replace
Alt+U  Edit|Undo

Alt+Backspace  Deletes the word to the right of the cursor
Alt+Hyphen  Jumps to the previous page
Alt+Page Down  Goes to the next tab
Alt+Page Up  Goes to the previous tab

Ctrl+Q+[  Finds the matching delimiter (forward)
Ctrl+Q+Ctrl+[  Finds the matching delimiter (forward)

Ctrl+Q+]  Finds the matching delimiter (backward)
Ctrl+Q+Ctrl+]  Finds the matching delimiter (backward)

Ctrl+O+A  Open file at cursor

Ctrl+O+B  Browse symbol at cursor

Ctrl+O+O  Toggles the case of a selection

Ctrl+F1  Help keyword search
Ctrl+F5  Toggles case-sensitive searching
Ctrl+F6  Toggles regular expression searching


Ctrl+F9  只編譯
F9       先編譯後運行程序
F5       設置斷點
F8       斷點調試
Ctrl+z   撤消
Ctrl + 空格(Space)  系統默認提示    注:可能與系統Ctrl+space文字切換衝突,你可以到輸入法中將之禁掉
Ctrl + Shift + Space   也是系統提示 如:Copy() ,將光標移動到()裏,按三鍵就會出現提示
Ctrl + Shift + C      將自己定義的函數或過程定義語句顯示在下面
Ctrl + S              保存文件
Ctrl + F              查詢某詞
Ctrl + Y              刪除某行
F12                   窗體與表單切換
Ctrl + Shift + (箭頭:向上或向下)  移動此行定義的過程或函數的定義或聲明位置
累,不想說了!!
  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章