如何找到调用当前方法的表单?

时间:2016-06-01 07:21:43

标签: c# vb.net

登录vb.net时,如何学习调用当前方法的表单名称? 我完全了解

  

System.Reflection.MethodBase.GetCurrentMethod()。

所以我用了这个

vb.net

$scope.loadTransactionList = function(){
    console.log("Refresh called");
    $scope.$broadcast('scroll.refreshComplete');
}

C#

Dim form_Name as String=(New System.Diagnostics.StackTrace).GetFrame(1).GetMethod.GetParameters(1).Member.DeclaringType.FullName

但是我使用 string form_Name = (new System.Diagnostics.StackTrace()).GetFrame(1).GetMethod.GetParameters(1).Member.DeclaringType.FullName; 作为Form_Name

时遇到了问题

我希望找到一种方法,我想获取Form对象名称,将其用作Form not string

1 个答案:

答案 0 :(得分:1)

VB:Context