Custom Control for XSL editing/development C# Visual Studio 2010
Is there a way to use a "control" of some kind to add blocks out xsl code to an xsl file .
Example:
I frequently type these three lines of code:
<xsl:comment> 开发者_如何学Pythonsome custom attributes and values here </xsl:comment>
<xsl:comment>#include virtual="[filepath]" </xsl:comment>
<xsl:comment> end custom tags </xsl:comment>
could i turn this block into some tyope of control that i could access the attributes and filepath of the include through properties?
May be this will help. XSL IMPORT
精彩评论