本文整理汇总了C#中MindMate.Model.MapNode.GetLinkType方法的典型用法代码示例。如果您正苦于以下问题:C# MapNode.GetLinkType方法的具体用法?C# MapNode.GetLinkType怎么用?C# MapNode.GetLinkType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MindMate.Model.MapNode
的用法示例。
在下文中一共展示了MapNode.GetLinkType方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetLinkType_MindMateNode
public void GetLinkType_MindMateNode()
{
var n = new MapNode(new MapTree(), null);
n.Link = @"#abc";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.MindMapNode);
}
示例2: GetLinkType_Mp4_Video
public void GetLinkType_Mp4_Video()
{
var n = new MapNode(new MapTree(), null);
n.Link = "abc.Mp4";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.VideoFile);
}
示例3: GetLinkType_MAILTO_Email
public void GetLinkType_MAILTO_Email()
{
var n = new MapNode(new MapTree(), null);
n.Link = "MAILTO:";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.EmailLink);
}
示例4: GetLinkType_Mail_NotEmail
public void GetLinkType_Mail_NotEmail()
{
var n = new MapNode(new MapTree(), null);
n.Link = "mail";
Assert.AreNotEqual(n.GetLinkType(), NodeLinkType.EmailLink);
}
示例5: GetLinkType_InternetLink
public void GetLinkType_InternetLink()
{
var n = new MapNode(new MapTree(), null);
n.Link = "HTTPS://";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.InternetLink);
}
示例6: GetLinkType_Gif_Image
public void GetLinkType_Gif_Image()
{
var n = new MapNode(new MapTree(), null);
n.Link = "abc.gif";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.ImageFile);
}
示例7: GetLinkType_Folder
public void GetLinkType_Folder()
{
var n = new MapNode(new MapTree(), null);
n.Link = @"\abc";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.Folder);
}
示例8: GetLinkType_Exe
public void GetLinkType_Exe()
{
var n = new MapNode(new MapTree(), null);
n.Link = "abc.exe";
Assert.AreEqual(n.GetLinkType(), NodeLinkType.Executable);
}
示例9: GetLinkType_Empty
public void GetLinkType_Empty()
{
var n = new MapNode(new MapTree(), null);
Assert.AreEqual(n.GetLinkType(), NodeLinkType.Empty);
}