本文整理汇总了C#中ICSharpCode.ILSpy.TextViewContext类的典型用法代码示例。如果您正苦于以下问题:C# TextViewContext类的具体用法?C# TextViewContext怎么用?C# TextViewContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TextViewContext类属于ICSharpCode.ILSpy命名空间,在下文中一共展示了TextViewContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TreeView_IsVisible
static bool TreeView_IsVisible(TextViewContext context)
{
ModuleDef module;
return context.TreeView == MainWindow.Instance.treeView &&
((module = ILSpyTreeNode.GetModule(context.SelectedTreeNodes)) != null) &&
module.EntryPoint is MethodDef;
}
示例2: PreserveNodeSelection
protected static void PreserveNodeSelection(TextViewContext context, Action action)
{
var treeView = context.TreeView;
if (treeView == null)
return;
var instance = MainWindow.Instance;
var oldNode = treeView.SelectedItem as SharpTreeNode;
var path = MainWindow.GetPathForNode(oldNode);
action();
var newNode = instance.FindNodeByPath(path, false);
// If not found let's try parent node
if (newNode == null && path.Length > 1)
{
newNode = instance.FindNodeByPath(path.Take(path.Length - 1).ToArray(), false);
if (oldNode != null)
oldNode = oldNode.Parent;
}
if (newNode == null)
return;
instance.SelectNode(newNode);
newNode.IsExpanded = oldNode != null && oldNode.IsExpanded;
}
示例3: RenameSelectedNode
internal static void RenameSelectedNode(this IRenamerContextMenu item, TextViewContext context, Action<TextViewContext> action)
{
var treeView = context.TreeView;
var activeHandler = BaseContextMenu.ILSpyPackage.ActiveHandler;
if (treeView == null || activeHandler == null)
return;
var targetObject = activeHandler.TargetObject;
if (targetObject == null)
return;
var instance = MainWindow.Instance;
var oldNode = treeView.SelectedItem as ILSpyTreeNode;
var path = instance.GetPathForNode(oldNode);
var oldName = RenameHelper.GetName(targetObject);
action(context);
var newNode = item.FindRenamedNode(oldNode, path, oldName, targetObject);
if (newNode == null)
return;
instance.SelectNode(newNode);
newNode.IsExpanded = oldNode != null && oldNode.IsExpanded;
}
示例4: TextEditor_IsVisible
static bool TextEditor_IsVisible(TextViewContext context)
{
ModuleDef module;
return context.TextView != null &&
(module = GetModule()) != null &&
module.EntryPoint is MethodDef;
}
示例5: Execute
public void Execute(TextViewContext context)
{
if (TreeView_IsVisible(context))
MainWindow.Instance.JumpToReference(ILSpyTreeNode.GetModule(context.SelectedTreeNodes).EntryPoint);
else if (TextEditor_IsVisible(context))
MainWindow.Instance.JumpToReference(GetModule().EntryPoint);
}
示例6: IsVisible
public bool IsVisible(TextViewContext context)
{
return context.SelectedTreeNodes != null &&
context.SelectedTreeNodes.Length == 1 &&
context.SelectedTreeNodes[0] is AssemblyTreeNode &&
!string.IsNullOrWhiteSpace(((AssemblyTreeNode)context.SelectedTreeNodes[0]).LoadedAssembly.FileName);
}
示例7: Execute
public override void Execute(TextViewContext context)
{
if (context.SelectedTreeNodes.Length != 1)
{
throw new Exception("SelectedTreeNodes = " + context.SelectedTreeNodes.Length);
}
var xCurrentField = context.SelectedTreeNodes[0] as FieldTreeNode;
if (xCurrentField == null)
{
throw new Exception("Current TreeNode is not a Field!");
}
if (MessageBox.Show("Do you want to generate FieldAccess code to your clipboard?", "Cosmos Plug tool", MessageBoxButton.YesNo) == MessageBoxResult.No)
{
return;
}
Clipboard.SetText(String.Format("[FieldAccess(Name = \"{0} {1}.{2}\")] ref {3} field{2}",
xCurrentField.FieldDefinition.FieldType.FullName,
xCurrentField.FieldDefinition.DeclaringType.FullName,
xCurrentField.FieldDefinition.Name,
Utilities.GetCSharpTypeName(xCurrentField.FieldDefinition.FieldType)));
MessageBox.Show("Done", "Cosmos Plug tool");
}
示例8: Execute
public override void Execute(TextViewContext context)
{
if (context.SelectedTreeNodes.Length != 1)
{
throw new Exception("SelectedTreeNodes = " + context.SelectedTreeNodes.Length);
}
var xCurrentProperty = context.SelectedTreeNodes[0] as PropertyTreeNode;
if (xCurrentProperty == null)
{
throw new Exception("Current TreeNode is not a Property!");
}
if (MessageBox.Show("Do you want to generate plug code to your clipboard?", "Cosmos Plug tool", MessageBoxButton.YesNo) == MessageBoxResult.No)
{
return;
}
var xProp = xCurrentProperty.PropertyDefinition;
var xSB = new StringBuilder();
if (xProp.GetMethod != null)
{
xSB.AppendLine(GenerateMethodPlugEntry.GenerateMethod(xProp.GetMethod));
xSB.AppendLine();
}
if (xProp.SetMethod != null)
{
xSB.AppendLine(GenerateMethodPlugEntry.GenerateMethod(xProp.SetMethod));
xSB.AppendLine();
}
Clipboard.SetText(xSB.ToString().Trim());
MessageBox.Show("Done", "Cosmos Plug tool");
}
示例9: IsVisible
public bool IsVisible(TextViewContext context)
{
var list = GetMappings(context);
return list != null &&
list.Count != 0 &&
list[0].MemberMapping.MethodDefinition != null &&
list[0].MemberMapping.MethodDefinition.Body != null &&
list[0].MemberMapping.MethodDefinition.Body.Instructions.Count > 0;
}
示例10: Execute
public void Execute(TextViewContext context)
{
var types = context.SelectedTreeNodes
.OfType<TypeTreeNode>()
.Select(n => HAL.Converter.Type(n.TypeDefinition))
.ToArray();
Services.BrowseInteractions(types, true);
}
示例11: Execute
public void Execute(TextViewContext context)
{
var assemblyDefinitions = context.SelectedTreeNodes
.OfType<AssemblyTreeNode>()
.Select(n => Converter.Assembly(n.LoadedAssembly.AssemblyDefinition))
.ToList();
Services.BrowseAssemblies(assemblyDefinitions);
}
示例12: IsVisible
public bool IsVisible(TextViewContext context)
{
if (context.SelectedTreeNodes == null)
{
return false;
}
return context.SelectedTreeNodes.OfType<AssemblyTreeNode>().Count() > 0;
}
示例13: IsVisible
public bool IsVisible(TextViewContext context)
{
if (context.SelectedTreeNodes == null)
{
return false;
}
return context.SelectedTreeNodes.All(n => n is AssemblyTreeNode);
}
示例14: Execute
public void Execute(TextViewContext context)
{
var assemblyDefinitions = context.SelectedTreeNodes
.OfType<AssemblyTreeNode>()
.Select(n => HAL.Converter.Assembly(n.LoadedAssembly.AssemblyDefinition))
.ToList();
var window = WindowManager.AssemblyBrowsers.Single();
window.ViewModel.AddAssemblies(assemblyDefinitions);
}
示例15: IsVisible
public bool IsVisible(TextViewContext context)
{
if (context.SelectedTreeNodes == null)
{
return false;
}
return (context.SelectedTreeNodes.Count() == 1)
&& (context.SelectedTreeNodes.Single() is TypeTreeNode);
}