亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? wwintl.pas

?? 醫院病歷管理簡易版,完全用DELPHI實現.
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
     property ItalicCaption : string read FItalicCaption write FItalicCaption;
     property UnderlineCaption : string read FUnderlineCaption write FUnderlineCaption;
     property ParagraphCaption : string read FParagraphCaption write FParagraphCaption;
     property TabsCaption : string read FTabsCaption write FTabsCaption;
     property FindCaption : string read FFindCaption write FFindCaption;
     property ReplaceCaption : string read FReplaceCaption write FReplaceCaption;
     property InsertObjectCaption : string read FInsertObjectCaption write FInsertObjectCaption;
     property ObjectPropertiesCaption : string read FObjectPropertiesCaption write FObjectPropertiesCaption;
     property SpellCheckCaption : string read FSpellCheckCaption write FSpellCheckCaption;
  end;

  TwwRichEditParagraphDlg = class(TPersistent)
  private
     FParagraphDlgCaption: string;
     FIndentationGroupBoxCaption: string;
     FLeftEditCaption: string;
     FRightEditCaption: string;
     FFirstLineEditCaption: string;
     FAlignmentCaption: string;
     FLeftEditHint: string;
     FRightEditHint: string;
     FFirstLineEditHint: string;
     FSpacingGroupCaption: string;
     FBeforeParagraphCaption: string;
     FAfterParagraphCaption: string;
     FWithinParagraphCaption: string;
     FWithinParagraphAtCaption: string;
     FAlignmentHint: string;
     FAlignLeft:string;
     FAlignRight:string;
     FAlignCenter:string;
     FAlignJustify:string;
     {$ifdef wwdelphi4up}
     FSpacingSingle,
     FSpacing1_5,
     FSpacingDouble,
     FSpacingAtLeast,
     FSpacingExactly,
     FSpacingMultiple: string;
     {$endif}
     FHelpContext: integer;
  published
     property ParagraphDlgCaption : string read FParagraphDlgCaption write FParagraphDlgCaption;
     property IndentationGroupBoxCaption : string read FIndentationGroupBoxCaption
                                                 write FIndentationGroupBoxCaption;
     property LeftEditHint : string read FLeftEditHint write FLeftEditHint;
     property RightEditHint : string read FRightEditHint write FRightEditHint;
     property FirstLineEditHint : string read FFirstLineEditHint write FFirstLineEditHint;
     property AlignmentHint : string read FAlignmentHint write FAlignmentHint;
     property LeftEditCaption : string read FLeftEditCaption write FLeftEditCaption;
     property RightEditCaption : string read FRightEditCaption write FRightEditCaption;
     property FirstLineEditCaption : string read FFirstLineEditCaption write FFirstLineEditCaption;
     property SpacingGroupCaption: string read FSpacingGroupCaption write FSpacingGroupCaption;
     property BeforeParagraphCaption: string read FBeforeParagraphCaption write FBeforeParagraphCaption;
     property AfterParagraphCaption: string read FAfterParagraphCaption write FAfterParagraphCaption;
     property WithinParagraphCaption: string read FWithinParagraphCaption write FWithinParagraphCaption;
     property WithinParagraphAtCaption: string read FWithinParagraphAtCaption write FWithinParagraphAtCaption;
     property AlignmentCaption : string read FAlignmentCaption write FAlignmentCaption;
     property AlignLeft : string read FAlignLeft write FAlignLeft;
     property AlignRight : string read FAlignRight write FAlignRight;
     property AlignCenter : string read FAlignCenter write FAlignCenter;
     property AlignJustify : string read FAlignJustify write FAlignJustify;
     {$ifdef wwdelphi4up}
     property SpacingSingle: string read FSpacingSingle write FSpacingSingle;
     property Spacing1_5: string read FSpacing1_5 write FSpacing1_5;
     property SpacingDouble : string read FSpacingDouble write FSpacingDouble;
     property SpacingAtLeast: string read FSpacingAtLeast write FSpacingAtLeast;
     property SpacingExactly : string read FSpacingExactly write FSpacingExactly;
     property SpacingMultiple: string read FSpacingMultiple write FSpacingMultiple;
     {$endif}
     property HelpContext: integer read FHelpContext write FHelpContext default 0;
  end;

  TwwRichEditTabDlg = class(TPersistent)
  private
     FTabDlgCaption: string;
     FTabGroupBoxCaption: string;
     FSetTabButtonCaption: string;
     FClearTabButtonCaption: string;
     FClearAllButtonCaption: string;

     FTabPositionEditHint: string;
     FListBoxHint: string;
     FSetButtonHint: string;
     FClearButtonHint: string;
     FClearAllButtonHint:string;
     FHelpContext: integer;
  published
     property TabDlgCaption : string read FTabDlgCaption write FTabDlgCaption;
     property HelpContext: integer read FHelpContext write FHelpContext default 0;
     property TabGroupBoxCaption : string read FTabGroupBoxCaption write FTabGroupBoxCaption;
     property SetTabButtonCaption : string read FSetTabButtonCaption write FSetTabButtonCaption;
     property ClearTabButtonCaption : string read FClearTabButtonCaption write FClearTabButtonCaption;
     property ClearAllButtonCaption : string read FClearAllButtonCaption write FClearAllButtonCaption;
     property TabPositionEditHint : string read FTabPositionEditHint write FTabPositionEditHint;
     property ListBoxHint : string read FListBoxHint write FListBoxHint;
     property SetButtonHint : string read FSetButtonHint write FSetButtonHint;
     property ClearButtonHint : string read FClearButtonHint write FClearButtonHint;
     property ClearAllButtonHint : string read FClearAllButtonHint write FClearAllButtonHint;
  end;


  TwwDBRichEditIntl = class(TPersistent)
  private
      FFontNameComboHint : string;
      FFontSizeComboHint : string;

      FNewButtonHint : string;
      FLoadButtonHint : string;
      FSaveAsButtonHint : string;
      FPrintButtonHint : string;
      FFindButtonHint : string;
      FCutButtonHint : string;
      FCopyButtonHint : string;
      FUndoButtonHint : string;
      {$ifdef wwDelphi4Up}
      FRedoButtonHint : string;
      {$endif}
      FPasteButtonHint : string;
      FBoldButtonHint :string;
      FColorButtonHint : string;
      FUnderlineButtonHint : string;
      FItalicButtonHint : string;
      FLeftButtonHint : string;
      FCenterButtonHint : string;
      FRightButtonHint : string;
      FJustifyButtonHint : string;
      FBulletButtonHint : string;
      FHighlightButtonHint: string;

      FSaveExitHint : string;
      FPageSetupHint: string;
      FExitHint: string;

      FClearHint: string;
      FSelectAllHint: string;
      FFindNextHint: string;
      FReplaceHint: string;
      FInsertObjectHint: string;
      FSpellCheckHint: string;

      FToolbarHint: string;
      FFormatBarHint: string;
      FViewStatusBarHint : string;
      FOptionsHint: string;

      FFontHint: string;
      FParagraphHint: string;
      FTabsHint: string;

      FMenuLabels: TwwRichEditMenuLabels;
      FPopupMenuLabels:TwwRichEditPopupMenuLabels;
      FParagraphDialog:TwwRichEditParagraphDlg;
      FTabDialog:TwwRichEditTabDlg;

      FCAPLockCaption: string;
      FNUMLockCaption: string;

  public
      destructor Destroy; override;
  published
      property FontNameComboHint : string read FFontNameComboHint write FFontNameComboHint;
      property FontSizeComboHint : string read FFontSizeComboHint write FFontSizeComboHint;

      property NewButtonHint : string read FNewButtonHint write FNewButtonHint;
      property LoadButtonHint : string read FLoadButtonHint write FLoadButtonHint ;
      property SaveAsButtonHint : string read FSaveAsButtonHint write FSaveAsButtonHint ;
      property PrintButtonHint : string read FPrintButtonHint write FPrintButtonHint;
      property FindButtonHint : string read FFindButtonHint write FFindButtonHint;
      property CutButtonHint : string read FCutButtonHint write FCutButtonHint;
      property CopyButtonHint : string read FCopyButtonHint write FCopyButtonHint;
      property UndoButtonHint : string read FUndoButtonHint write FUndoButtonHint;
      {$ifdef wwDelphi4Up}
      property RedoButtonHint : string read FRedoButtonHint write FRedoButtonHint;
      {$endif}
      property PasteButtonHint : string read FPasteButtonHint write FPasteButtonHint;
      property BoldButtonHint : string read FBoldButtonHint write FBoldButtonHint;
      property ColorButtonHint : string read FColorButtonHint write FColorButtonHint;
      property UnderlineButtonHint : string read FUnderlineButtonHint write FUnderlineButtonHint;
      property ItalicButtonHint : string read FItalicButtonHint write FItalicButtonHint;
      property LeftButtonHint : string read FLeftButtonHint write FLeftButtonHint;
      property CenterButtonHint : string read FCenterButtonHint write FCenterButtonHint;
      property RightButtonHint : string read FRightButtonHint write FRightButtonHint;
      property JustifyButtonHint : string read FJustifyButtonHint write FJustifyButtonHint;
      property BulletButtonHint : string read FBulletButtonHint write FBulletButtonHint;
      property HighlightButtonHint : string read FHighlightButtonHint write FHighlightButtonHint;

      property SaveExitHint : string read FSaveExitHint write FSaveExitHint;
      property PageSetupHint : string read FPageSetupHint write FPageSetupHint;
      property ExitHint : string read FExitHint write FExitHint;

      property ClearHint : string read FClearHint write FClearHint ;
      property SelectAllHint : string read FSelectAllHint write FSelectAllHint;
      property FindNextHint : string read FFindNextHint write FFindNextHint;
      property ReplaceHint : string read FReplaceHint write FReplaceHint;
      property InsertObjectHint : string read FInsertObjectHint write FInsertObjectHint;
      property SpellCheckHint : string read FSpellCheckHint write FSpellCheckHint;

      property ToolbarHint : string read FToolbarHint write FToolbarHint;
      property FormatBarHint : string read FFormatBarHint write FFormatBarHint;
      property ViewStatusBarHint : string read FViewStatusBarHint write FViewStatusBarHint;
      property OptionsHint : string read FOptionsHint write FOptionsHint;

      property FontHint : string read FFontHint write FFontHint;
      property ParagraphHint : string read FParagraphHint write FParagraphHint;
      property TabsHint : string read FTabsHint write FTabsHint;

      property CAPLockCaption : string read FCAPLockCaption write FCAPLockCaption;
      property NUMLockCaption : string read FNUMLockCaption write FNUMLockCaption;

      property MenuLabels : TwwRichEditMenuLabels read FMenuLabels write FMenuLabels;
      property PopupMenuLabels : TwwRichEditPopupMenuLabels read FPopupMenuLabels write FPopupMenuLabels;
      property ParagraphDialog : TwwRichEditParagraphDlg read FParagraphDialog write FParagraphDialog;
      property TabDialog : TwwRichEditTabDlg read FTabDialog write FTabDialog;

  end;

  TwwSearchDialogIntl = class(TPersistent)
  private
    FSearchCharLabel: string;
    FSearchCharShortLabel: string;
    FSearchByLabel: string;
    FStatusRecLabel: string;
    FStatusOfLabel: string;
    FSearchCharHint: string;
    FSearchByHint: string;
  published
    property SearchCharLabel: string read FSearchCharLabel write FSearchCharLabel;
    property SearchCharShortLabel: string read FSearchCharShortLabel write FSearchCharShortLabel;
    property SearchByLabel: string read FSearchByLabel write FSearchByLabel;
    property StatusRecLabel: string read FStatusRecLabel write FStatusRecLabel;
    property StatusOfLabel : string read FStatusOfLabel write FStatusOfLabel;
    property SearchCharHint: string read FSearchCharHint write FSearchCharHint;
    property SearchByHint: string read FSearchByHint write FSearchByHint;
  end;

  TwwMonthCalendarIntl = class(TPersistent)
  private
    FPopupYearLabel: string;
    FEnterYearPrompt : string;
  published
    property PopupYearLabel: string read FPopupYearLabel write FPopupYearLabel;
    property EnterYearPrompt: string read FEnterYearPrompt write FEnterYearPrompt;
  end;


  TwwLocateDialogIntl = class(TPersistent)
  private
    FFieldValueLabel: string;
    FSearchTypeLabel: string;
    FCaseSensitiveLabel: string;
    FMatchExactLabel: string;
    FMatchStartLabel: string;
    FMatchAnyLabel: string;
    FFieldsLabel: string;
    FButtonFirst: string;
    FButtonNext: string;
    FButtonCancel: string;
    FButtonClose: string;
    FFieldValueHint: string;
    FCaseSensitiveHint: string;
    FMatchExactHint: string;
    FMatchStartHint: string;
    FMatchAnyHint: string;
    FButtonFirstHint: string;
    FButtonNextHint: string;
    FFieldNameHint: string;
  published
    property FieldValueLabel: string read FFieldValueLabel write FFieldValueLabel;
    property SearchTypeLabel: string read FSearchTypeLabel write FSearchTypeLabel;
    property CaseSensitiveLabel: string read FCaseSensitiveLabel write FCaseSensitiveLabel;
    property MatchExactLabel: string read FMatchExactLabel write FMatchExactlabel;
    property MatchStartLabel: string read FMatchStartLabel write FMatchStartLabel;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91丨porny丨最新| 欧洲av在线精品| 欧美综合一区二区| 精品久久久影院| 樱花草国产18久久久久| 久久99精品久久久久久久久久久久| 成人99免费视频| 久久综合久色欧美综合狠狠| 亚洲成人一区二区| 一本大道av一区二区在线播放| 久久久久久久久久久久久女国产乱| 婷婷一区二区三区| 在线亚洲一区观看| 中文字幕一区av| 懂色av中文字幕一区二区三区| 日韩视频免费观看高清在线视频| 亚洲国产精品久久人人爱| 不卡免费追剧大全电视剧网站| 精品久久久久久综合日本欧美 | 欧美激情一区在线观看| 舔着乳尖日韩一区| 色就色 综合激情| 成人免费在线观看入口| 丰满少妇在线播放bd日韩电影| 久久日韩粉嫩一区二区三区| 精品亚洲成av人在线观看| 欧美日韩高清一区| 天天射综合影视| 欧美一级理论片| 麻豆91精品91久久久的内涵| 欧美大片国产精品| 寂寞少妇一区二区三区| 26uuu国产一区二区三区| 久久成人免费网| www国产亚洲精品久久麻豆| 久久精品国产亚洲5555| 日韩精品一区二区三区视频播放 | 国产亚洲成年网址在线观看| 国产在线播精品第三| 久久夜色精品一区| 国产成人av影院| 国产精品久久久久9999吃药| a级精品国产片在线观看| 亚洲天天做日日做天天谢日日欢 | 欧美国产精品一区二区三区| 成人黄动漫网站免费app| 亚洲视频中文字幕| 欧美丝袜丝交足nylons| 美女脱光内衣内裤视频久久网站| 精品国产一二三区| 成人精品免费看| 亚洲一区二区3| 精品欧美一区二区在线观看| 高清视频一区二区| 亚洲亚洲人成综合网络| 日韩三区在线观看| eeuss影院一区二区三区| 亚洲成在人线免费| 国产亚洲欧美一区在线观看| 94-欧美-setu| 欧美a一区二区| 国产欧美精品一区二区三区四区| 91麻豆精品视频| 美腿丝袜亚洲色图| 国产精品免费久久| 欧美剧情片在线观看| 国产91精品在线观看| 三级成人在线视频| 欧美激情中文字幕| 91精品国产欧美一区二区18| 99在线热播精品免费| 奇米777欧美一区二区| 亚洲男人都懂的| 久久品道一品道久久精品| 色婷婷国产精品| 国产电影精品久久禁18| 人人精品人人爱| 一区二区三区四区在线播放| 久久美女艺术照精彩视频福利播放 | 老色鬼精品视频在线观看播放| 亚洲欧洲在线观看av| 欧美一区二区成人6969| 色八戒一区二区三区| 国产精品1024| 精品一区二区av| 偷窥少妇高潮呻吟av久久免费| 中文字幕一区av| 日本一区二区三区视频视频| 欧美成人福利视频| 欧美视频在线播放| 一本大道av一区二区在线播放| 国产福利91精品| 精品在线播放午夜| 丝袜美腿亚洲一区二区图片| 一区二区三区四区不卡视频| 国产精品欧美一级免费| 国产欧美综合色| 26uuu亚洲综合色| 欧美tickling挠脚心丨vk| 欧美精品精品一区| 精品视频一区二区不卡| 色婷婷精品久久二区二区蜜臂av | 亚洲一二三专区| 亚洲三级在线播放| 亚洲欧洲av在线| 国产精品乱码久久久久久| 久久人人97超碰com| 精品国产凹凸成av人网站| 日韩欧美一二区| 日韩一级高清毛片| 日韩一区二区三区视频在线 | 一区二区三区在线播| 1000部国产精品成人观看| 国产精品的网站| 亚洲免费在线视频| 亚洲激情男女视频| 亚洲线精品一区二区三区| 亚洲一区二区三区影院| 亚洲第一激情av| 日韩av电影天堂| 日本少妇一区二区| 免费欧美日韩国产三级电影| 免费av网站大全久久| 国产一区二区三区| 成人综合婷婷国产精品久久| 成人免费看的视频| 色一区在线观看| 4438成人网| 国产三级精品视频| 亚洲欧洲精品天堂一级| 亚洲精品videosex极品| 亚洲一区二区精品久久av| 免费观看91视频大全| 丰满少妇在线播放bd日韩电影| 91蝌蚪porny| 欧美男人的天堂一二区| 欧美成人欧美edvon| 国产午夜精品福利| 亚洲乱码国产乱码精品精98午夜 | 久久成人免费网站| 成人精品小蝌蚪| 欧美日韩久久一区| 日韩免费在线观看| 国产精品国产三级国产aⅴ原创| 亚洲综合激情另类小说区| 日本女人一区二区三区| 国产成a人亚洲精品| 91黄视频在线观看| 精品国产3级a| 一区二区三区久久| 久久9热精品视频| 在线亚洲欧美专区二区| 26uuu国产电影一区二区| 一区二区三区四区精品在线视频| 久久精品国产一区二区三| 91麻豆精品在线观看| 欧美sm极限捆绑bd| 亚洲一区日韩精品中文字幕| 国产一区二区三区国产| 欧美久久久久久久久| 中文幕一区二区三区久久蜜桃| 视频一区二区国产| 色综合天天在线| 国产婷婷色一区二区三区在线| 亚洲成人午夜影院| av激情综合网| 久久久国产一区二区三区四区小说 | 国产一区二区导航在线播放| 在线精品视频一区二区三四| 欧美国产视频在线| 国产综合成人久久大片91| 欧美日韩国产区一| 亚洲日本在线a| 国产成人激情av| 久久新电视剧免费观看| 天天操天天干天天综合网| 色综合久久综合| 国产精品久久免费看| 久久91精品久久久久久秒播| 欧美午夜不卡在线观看免费| 亚洲精品亚洲人成人网 | 国产精品电影一区二区| 国内精品久久久久影院薰衣草 | 欧美伊人久久久久久久久影院 | 欧美区一区二区三区| 亚洲愉拍自拍另类高清精品| 99精品欧美一区二区三区小说| 精品国产乱码久久久久久影片| 日韩精品欧美精品| 欧美日韩三级一区| 一区二区高清免费观看影视大全| 高清在线不卡av| 国产精品视频一二三区| 成人性生交大片免费看在线播放| 国产丝袜在线精品| 国产91综合一区在线观看| 国产精品私房写真福利视频| 成人免费视频免费观看| 国产精品灌醉下药二区| 99久久777色|