gpt4 book ai didi

winforms - 在winforms中创建一个保存按钮

转载 作者:行者123 更新时间:2023-12-02 23:41:25 29 4
gpt4 key购买 nike

目标:

我正在尝试创建一个将文件保存到桌面的按钮。使用 Invoke-WebRequest 获取传入文件使用 GET 方法。我希望保存按钮出现在我的弹出窗口中。

这是一个例子:

旁注:

此代码位于 switch用变量拆分三种方式。

switch (...) {
p {
if ($second -match 'RegexMatch') {
$resource = $second
$fileResult = Invoke-WebRequest -Uri https://url.com/$resource/file -WebSession $currentsession
# End API Call
Write-Host
Write-Host '------------' -ForegroundColor Green
Write-Host 'FILE Results' -ForegroundColor Green
Write-Host '------------' -ForegroundColor Green
# Create Window
Add-Type -AssemblyName System.Windows.Forms
$form = New-Object -TypeName System.Windows.Forms.Form
$form.StartPosition = 'CenterScreen'
$form.KeyPreview = $true
$form.Add_KeyDown {
if ($_.Control -and $_.KeyCode -eq 'F') {
Add-Type -AssemblyName Microsoft.VisualBasic
$stringToFind = [Microsoft.VisualBasic.Interaction]::InputBox('Please enter your search terms', 'Find')
$pos = $textBox.Text.IndexOf($stringToFind)

if ($pos -ne -1) {
$textBox.SelectionStart = $pos
$textBox.SelectionLength = $stringToFind.Length
}
}
}
# Textbox
$textBox = New-Object -TypeName System.Windows.Forms.TextBox
$textBox.Dock = [Windows.Forms.DockStyle]::Fill
$textBox.ReadOnly =$true
$textBox.Multiline = $true
$textBox.ScrollBars = 'Vertical'
$textBox.Font = New-Object -TypeName System.Drawing.Font -ArgumentList ('Arial',12)
$textBox.ForeColor = 'White'
$textBox.Text = $fileResult
$textBox.BackColor = 'Black'
$textBox.ShortcutsEnabled = $true
$Form.Controls.Add($textBox)
# Button
$btn = New-Object -TypeName System.Windows.Forms.Button
$btn.Text = 'Finish'
$btn.DialogResult = 'Ok'
$btn.Dock = 'bottom'
$form.Controls.Add($btn)
if ($form.ShowDialog() -eq 'Ok') {
$tb.lines
}
} else {
Write-Host
Write-Warning -Message 'Please enter a valid FILE ID'
Write-Host
}
break
}
...
}

目的:

我想为用户添加一个选项来下载文件,以便在不同的应用程序中仔细查看。

问题:

我将如何开始使用 powershell 中的 winforms 创建一个按钮来将此文件保存到磁盘?

这是我尝试过的:
      $BtnSave=New-Object -TypeName System.Windows.Forms.Button
$BtnSave.Text='Save'
$BtnSave.Dock='bottom'
$btnSave.DialogResult='Ok'
$form.Controls.Add($BtnSave)
$BtnSave.Add_Click({
$SaveFileDialog = New-Object 'System.Windows.Forms.SaveFileDialog'
if ($SaveFileDialog.ShowDialog() -eq 'Ok')
{
$textBox.Text = $SaveFileDialog.FileName
Write-Information 'File Saved'
}
})

新问题:

文件仍未保存到磁盘,但单击时会显示保存文件对话框。此外,将 Switch -OutFile 与我的 Invoke-WebRequest 一起使用会给我一个错误。

错误:
Invoke-WebRequest : Missing an argument for parameter 'OutFile'. Specify a parameter of type 'System.String' and try again.

最佳答案

在表单中您想要的位置添加按钮后,Add_Click()方法将允许您处理其单击事件并运行您想要的任何脚本 block (单击按钮时)。

此时,-OutFile Invoke-WebRequest 的参数将有助于将下载的文件保存到磁盘(将所需的路径传递给文件)。

关于winforms - 在winforms中创建一个保存按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41397716/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com