亚洲欧美第一页_禁久久精品乱码_粉嫩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小视频在线观看| 国产蜜臀av在线一区二区三区| 久久99精品久久久久久动态图 | 国内成+人亚洲+欧美+综合在线| 91精品国产色综合久久| 久久aⅴ国产欧美74aaa| 久久精品视频网| 91尤物视频在线观看| 视频一区中文字幕国产| 精品国产一区二区三区忘忧草 | 大桥未久av一区二区三区中文| 国产精品欧美一区二区三区| 一本久久精品一区二区| 免费一级欧美片在线观看| 久久免费视频一区| 成人av网站在线| 亚洲成人一区二区在线观看| wwww国产精品欧美| 欧美亚洲国产一卡| 精彩视频一区二区三区| 亚洲激情自拍视频| 精品女同一区二区| 97精品电影院| 国产主播一区二区| 午夜影视日本亚洲欧洲精品| 国产清纯白嫩初高生在线观看91| 色噜噜狠狠色综合中国| 精一区二区三区| 亚洲一区二区黄色| 中文字幕不卡三区| 国产精品免费网站在线观看| 欧美亚洲动漫精品| 北岛玲一区二区三区四区| 免费久久99精品国产| 国产精品久久三区| 精品国产伦一区二区三区观看方式 | 99久久久久免费精品国产 | 久久日韩粉嫩一区二区三区| 欧美调教femdomvk| 成人午夜免费视频| 日本成人在线一区| 亚洲国产视频直播| 亚洲欧美偷拍卡通变态| 久久精品亚洲乱码伦伦中文| 欧美区一区二区三区| 欧美在线制服丝袜| 粉嫩绯色av一区二区在线观看 | 国产精品天天摸av网| 久久久不卡网国产精品二区| 欧美一级日韩免费不卡| 欧美日韩国产电影| 欧美伊人久久久久久久久影院 | 一区二区三区四区激情| 中文字幕精品一区二区精品绿巨人| 亚洲人精品一区| 久久久久国产精品免费免费搜索| 日韩三级.com| 日韩一级视频免费观看在线| 欧美日韩色综合| 欧美日韩一级片在线观看| 在线观看免费成人| 欧洲精品在线观看| 欧美亚洲动漫另类| 欧美日韩激情一区二区| 欧美精品久久99| 日韩一区二区三区精品视频| 欧美一区二区高清| 精品国产伦一区二区三区观看方式 | 色婷婷综合久久久久中文 | 日韩免费电影网站| 欧美一区二区三区在线看| 欧美久久免费观看| 日韩一区二区免费在线观看| 日韩一区二区三区视频在线| 日韩一卡二卡三卡国产欧美| 日韩精品一区二区三区在线播放 | 色哟哟国产精品| 99精品视频在线观看免费| 97久久超碰国产精品| 91色综合久久久久婷婷| 欧洲一区在线电影| 666欧美在线视频| 日韩欧美精品在线视频| 国产视频一区二区在线| 中文字幕在线观看不卡| 夜夜精品视频一区二区| 91亚洲男人天堂| 91麻豆国产精品久久| 欧美日韩在线电影| 精品久久久久99| 国产精品久久久久久久久久免费看 | 亚洲成人黄色影院| 免费在线观看成人| 国产成人在线观看| 91麻豆123| 一本一道综合狠狠老| 欧美色中文字幕| 91精品国产免费| 国产欧美在线观看一区| 一区二区三区四区高清精品免费观看| 日本怡春院一区二区| 美女视频网站黄色亚洲| 国产精品亚洲成人| 欧洲亚洲精品在线| 国产视频在线观看一区二区三区| 一区二区三区免费| 国产成人夜色高潮福利影视| 在线精品亚洲一区二区不卡| 久久精品人人做人人爽97 | 成人av动漫网站| 欧美精品三级在线观看| 久久久综合视频| 中文字幕在线免费不卡| 午夜国产精品影院在线观看| 国产69精品一区二区亚洲孕妇| 欧美日韩免费在线视频| 中文在线一区二区| 日本女人一区二区三区| 久久99精品国产| 91亚洲永久精品| 精品女同一区二区| 丝袜a∨在线一区二区三区不卡| 成人动漫av在线| 精品人伦一区二区色婷婷| 中文字幕一区二区三中文字幕| 美女脱光内衣内裤视频久久网站| 九色综合狠狠综合久久| 99久久精品国产网站| 欧美va亚洲va在线观看蝴蝶网| 午夜精品aaa| 精品视频在线看| 亚洲视频1区2区| 国产精品一线二线三线精华| 555夜色666亚洲国产免| 亚洲午夜久久久久久久久电影院| 一本到不卡免费一区二区| 日本一区二区三区在线不卡| 麻豆一区二区99久久久久| 51午夜精品国产| 蜜桃视频在线观看一区二区| 5566中文字幕一区二区电影| 亚洲成人你懂的| 欧美日韩国产中文| 日韩国产精品91| 日韩一区二区三区免费看| 日韩国产高清在线| 精品欧美一区二区久久| 国产在线精品一区二区三区不卡 | 在线亚洲一区二区| 一区二区三区精密机械公司| 91蜜桃网址入口| 玉足女爽爽91| 欧美日韩一卡二卡三卡| 美女一区二区久久| 国产日产欧美一区| 99精品视频在线观看| 亚洲综合色网站| 欧美一区二区三区在线看| 精品影视av免费| 国产精品久久毛片av大全日韩| 波多野结衣中文一区| 亚洲一卡二卡三卡四卡| 51精品秘密在线观看| 另类欧美日韩国产在线| 26uuu欧美| 99视频有精品| 天天av天天翘天天综合网| 2020国产精品自拍| 99久久精品国产麻豆演员表| 亚洲va韩国va欧美va精品| 日韩精品中文字幕一区二区三区 | 一区二区成人在线视频| 欧美一区二区三区四区久久 | 中文字幕不卡在线播放| 欧美日韩精品一区二区三区四区 | 日本一区二区三区电影| 日本久久电影网| 激情国产一区二区 | 日韩欧美中文一区二区| 成人丝袜视频网| 午夜精品久久久久久久| 日本一区二区久久| 欧美色视频一区| eeuss国产一区二区三区| 亚洲成人免费观看| 国产欧美一区二区精品性色| 欧美天天综合网| 本田岬高潮一区二区三区| 免费av成人在线| 亚洲欧美日韩国产手机在线| 精品国产伦一区二区三区观看体验 | 蜜臀av在线播放一区二区三区| 中文字幕av一区二区三区| 日韩一区二区免费电影| 欧美亚洲禁片免费| 成人国产精品视频| 国产酒店精品激情| 麻豆国产欧美日韩综合精品二区|