返回列表 发帖

[问题求助] C#代码中lambda 表达式转成powershell代码

本帖最后由 小白龙 于 2025-3-21 11:40 编辑

我想把下面这行C#代码转为powershell代码, 里面有个lambda 表达式,即cf => cf.ByAutomationId("CommandButton_7")
所有ai把我转晕了, 也没搞定, 求路过大佬支招, 多谢

https://github.com/FlaUI/FlaUI/b ... ilityMethods.cs#L79

原C#代码
dontSaveButton = modalWindows[0].FindFirstDescendant(cf => cf.ByAutomationId("CommandButton_7")).AsButton();COPY
所有ai都认为下面这样改, 但是实际使用报错
$dontSaveButton = $modalWindows[0].FindFirstDescendant([FlaUI.Core.Definitions.Condition]::ByAutomationId("CommandButton_7")).AsButton()COPY
powershell一向是简化c#代码, 在这里却不行了, 即便写通了, 估计也得一堆代码吧

应该是把相关的代码写在花括号中, 类似下面这样, 但是还是报错
$dontSaveButton = $modalWindows[0].FindFirstDescendant( { param($cf); $cf.ByAutomationId("CommandButton_7") } )COPY

C#下面都可以执行, 但是改成powershell死活就是不行
var conditionFactory = window.Automation.ConditionFactory;
var condition = conditionFactory.ByAutomationId("CommandButton_7");
dontSaveButton = modalWindows[0].FindFirstDescendant(condition).AsButton();COPY

TOP

回复 3# Five66


    怎么都不行, 真是怪了

TOP

回复 5# jyswjjgdwtdtj


    试了也不行

TOP

回复 3# Five66


     发生错误: 方法调用失败,因为 [System.Char] 不包含名为“FindFirstDescendant”的方法。

TOP

本帖最后由 小白龙 于 2025-3-22 05:46 编辑

回复 8# Five66

多谢大佬指导, 确实是哪个问题,
我是想把下面链接的c#函数改为powershell
https://github.com/FlaUI/FlaUI/b ... ilityMethods.cs#L67
现在的问题是, 下面这行C#代码怎样正确改为powershell, 得先把上游问题解决掉
var modalWindows = Retry.WhileEmpty(() => window.ModalWindows, TimeSpan.FromSeconds(1)).Result;COPY
下面代码是gpt生成的powershell, 改的不正确
function CloseWindowWithDontSave {
    param($window)
    $window.Close()
    [Wait]::UntilInputIsProcessed()
    # 获取窗口的模态对话框
    $modalWindows = [Retry]::WhileEmpty({$window.ModalWindows}, [TimeSpan]::FromSeconds(5)).Result
    # 查找 "不保存" 按钮
    if ([Tools.OperatingSystem]::IsWindows11()) {
        $dontSaveButton = $modalWindows[0].FindFirstDescendant("SecondaryButton").AsButton()
    } else {
        $dontSaveButton = $modalWindows[0].FindFirstDescendant( { param($cf) $cf.ByAutomationId("CommandButton_7")} ).AsButton()
    }
    # 点击 "不保存" 按钮
    $dontSaveButton.Invoke()
}COPY
原C#代码如下:
        public static void CloseWindowWithDontSave(Window window)
        {
            window.Close();
            Wait.UntilInputIsProcessed();
            var modalWindows = Retry.WhileEmpty(() => window.ModalWindows, TimeSpan.FromSeconds(1)).Result;
            Button dontSaveButton;
            if (Tools.OperatingSystem.IsWindows11())
            {
                dontSaveButton = modalWindows[0].FindFirstDescendant("SecondaryButton").AsButton();
            }
            else
            {
                dontSaveButton = modalWindows[0].FindFirstDescendant(cf => cf.ByAutomationId("CommandButton_7")).AsButton();
            }
            dontSaveButton.Invoke();
        }COPY

TOP

回复 10# Five66


    不行报错

C:\Users\Administrator\Desktop\FLAUI\_MouseTests_Click.ps1 : 发生错误: 找不到“WhileEmpty”的重载,参数计数为:“2”。
    + CategoryInfo          : NotSpecified: ( [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,_MouseTests_Click.ps1

TOP

本帖最后由 小白龙 于 2025-3-23 01:04 编辑

回复 10# Five66


    大佬, 我在把下面链接中的C#函数改为powershell, 上面要转的代码就是, 试两天了, 都没结果
https://github.com/FlaUI/FlaUI/b ... s/MouseTests.cs#L27

TOP

回复 13# Five66


    还是不行
C:\Users\Administrator\Desktop\FLAUI\_MouseTests_Click.ps1 : 发生错误: 方法调用失败,因为 [FlaUI.Core.AutomationElements.AutomationElement] 不包含名为“AsButton”的
方法。
    + CategoryInfo          : NotSpecified: ( [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,_MouseTests_Click.ps1

TOP

回复 15# Five66


    C:\Users\Administrator\Desktop\FLAUI\_MouseTests_Click.ps1 : 发生错误: 使用“0”个参数调用“Invoke”时发生异常:“The requested pattern 'Invoke [#10000]' is not supp
orted”
    + CategoryInfo          : NotSpecified: ( [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,_MouseTests_Click.ps1

TOP

回复 17# Five66


    这个就是咱们在关闭记事本的时候, 弹出来的那个, 保存的对话框, 这代码相当于点了 否

TOP

回复 19# Five66


    他这个函数就是一个通用的关闭对话框的函数, 在所有语言的操作系统上都适用, 不管是英文还是日文系统, 所以感觉很有用, 就想转换一下powershell, 大佬能方便的时候再看看吗?

TOP

本帖最后由 小白龙 于 2025-3-25 03:31 编辑

回复 21# Five66


    多谢大佬, 这回行了, 看了一下, 原来是这行代码不行
$modalWindows = [Retry]::WhileEmpty({$window.ModalWindows}, [TimeSpan]::FromSeconds(1)).Result
改成下面就行了,
$modalWindows = [FlaUI.Core.Tools.Retry]::WhileEmpty([func[[FlaUI.Core.AutomationElements.Window[]]]]{$window.ModalWindows}, [TimeSpan]::FromSeconds(1),$null,$false,$false,$null).Result
原C#是
var modalWindows = Retry.WhileEmpty(() => window.ModalWindows, TimeSpan.FromSeconds(1)).Result;
为什么多了好几个参数呢

TOP

回复 21# Five66


    我看cs的定义, 如下图, 其它几个参数都有默认值的, C#只用了两个参数就行了, 为啥powershell要补全呢

TOP

回复 21# Five66


    问了一下GPT, 说可以省啊!, 下面是gpt的解释
如果 C# 方法 **没有重载**,但有 **可选参数**,在 PowerShell 中仍然 **可以省略这些可选参数**,方法会使用默认值。  

---

## **示例:C# 只有一个方法(无重载),但有可选参数**
假设 C# 代码如下:
```csharp
public class MyClass
{
    public void MyMethod(int a, string b = "defaultB", int c = 10, bool d = false)
    {
        Console.WriteLine($"a={a}, b={b}, c={c}, d={d}");
    }
}
```

在 PowerShell 中调用:
```powershell
# 创建对象
$object = New-Object MyClass

# 只传递必需参数 `a`,省略 `b`, `c`, `d`
$object.MyMethod(1)
# 输出: a=1, b=defaultB, c=10, d=False

# 传递 `a`, `b`,省略 `c`, `d`
$object.MyMethod(1, "CustomB")
# 输出: a=1, b=CustomB, c=10, d=False

# 传递 `a`, `b`, `c`,省略 `d`
$object.MyMethod(1, "CustomB", 20)
# 输出: a=1, b=CustomB, c=20, d=False

# 传递所有参数
$object.MyMethod(1, "CustomB", 20, $true)
# 输出: a=1, b=CustomB, c=20, d=True
```

---

## **PowerShell 省略可选参数的规则**
1. **PowerShell 会自动使用 C# 方法定义的默认值**。
2. **参数必须按顺序传递**,不能直接跳过中间参数。例如:
   ```powershell
   $object.MyMethod(1, , , $true)  # ❌ 错误,PowerShell 不允许省略中间的逗号
   ```
   如果需要指定后面的参数,必须传 `null`:
   ```powershell
   $object.MyMethod(1, $null, $null, $true)  # ✅ 这样可以
   ```

---

## **结论**
✅ **C# 只有一个方法,没有重载,但有可选参数时,PowerShell 仍然可以省略可选参数**。  
✅ **必须按顺序传递参数,不能直接跳过中间参数**,如果想跳过,可以传 `$null` 作为占位符。  

你在转换 C# 代码时遇到了什么问题?可以贴出来,我可以帮你看看!😊

TOP

返回列表