5

我正在将我的应用程序迁移到 delphi 2009。我的应用程序必须仍然使用大量 AnsiString。在迁移过程中,我发现自己总是在转换:

abc := def;

进入:

abc := string(def);

或者

abc := TDeviceAnsiString(def);

我知道我应该能够使用模板来做到这一点,但我发现模板——尽管功能强大——并不那么容易开始工作。这是我一直在尝试的:

<?xml version="1.0" encoding="utf-8" ?>

<codetemplate   xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
                version="1.0.0">
    <template name="das" invoke="auto">
        <point name="expr">
            <script language="Delphi">
                InvokeCodeCompletion;
            </script>
            <hint>
                MP: TDeviceAnsiString
            </hint>
            <text>
                True
            </text>
        </point>
        <description>
            MP: TDeviceAnsiString
        </description>
        <author>
            Mike
        </author>
        <code language="Delphi" context="any" delimiter="|"><![CDATA[TDeviceAnsiString(|selected|)|end|]]>
        </code>
    </template>
</codetemplate>

它不会出现在“环绕”菜单中,也不会在我想要的时候激活。我希望能够

abc := **das***[tab]*def;

或选择“def”并使用“环绕”获得:

abc := TDeviceAnsiString(def);

感谢您的帮助!

4

1 回答 1

11

这应该这样做:

<?xml version="1.0" encoding="utf-8" ?>
<codetemplate   xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
                version="1.0.0">
    <template name="das" surround="true" invoke="auto">
        <description>
            MP: TDeviceAnsiString
        </description>
        <author>
            Mike rev François
        </author>
        <code language="Delphi" delimiter="|"><![CDATA[TDeviceAnsiString(|end||selected|)]]>
        </code>
    </template>
</codetemplate>

补充:您可以通过LiveTemplates Technical Infos在Delphi Wiki上找到更多信息

于 2008-10-29T19:38:15.763 回答