This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./parent"></require> | |
<parent></parent> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./parent"></require> | |
<parent name='a'></parent> | |
<parent name='b'></parent> | |
<parent></parent> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Svg image. | |
/// </summary> | |
public class SvgImage : NControlView | |
{ | |
#region Private Members | |
/// <summary> | |
/// The svg graphics. | |
/// </summary> |
OlderNewer