小编Man*_*anu的帖子

DataTemplate 内的交互触发器不适用于 XamlReader

我正在尝试使用在代码后面动态创建的(对于 WPF 数据网格)XamlReader.Load()进行解析:DataTemplate

DataTemplate dataTemplate;

StringReader template = new StringReader($@"
<DataTemplate
    xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation""
    xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""
    xmlns:local=""clr-namespace:MyApp;assembly=MyApp"">
<DataTemplate.Resources>
    <local:ArrayMultiValueConverter x:Key=""arrayMultiValueConverter""/>
</DataTemplate.Resources>
    <StackPanel Orientation=""Vertical"">
        <Expander VerticalAlignment=""Center"" xmlns:i=""http://schemas.microsoft.com/xaml/behaviors"">
        <i:Interaction.Triggers>
            <i:EventTrigger EventName=""IsExpanded"">
                <i:InvokeCommandAction Command=""{{Binding DataContext.TextFilterColumn}}""/>
            </i:EventTrigger>
        </i:Interaction.Triggers>
            <Expander.Header>
                <TextBlock x:Name=""{dtColumnName}"" VerticalAlignment=""Center"" Text=""{{TemplateBinding Content}}"" Margin=""5,5,5,0"" FontWeight=""SemiBold""/>
            </Expander.Header>
            <StackPanel Orientation=""Horizontal"">
                <TextBox x:Name=""{"TbxFilter" + dtColumnName}"" Width=""100"" Margin=""5""/>
                <TextBlock Margin=""0,0,5,0"" VerticalAlignment=""Center"" FontFamily=""Segoe MDL2 Assets"">
                    <Hyperlink TextDecorations=""{{x:Null}}"" Command=""{{Binding DataContext.FilterColumnName, RelativeSource={{RelativeSource FindAncestor, AncestorType={{x:Type Window}}}}}}"">
                        <Hyperlink.CommandParameter>
                            <MultiBinding Converter=""{{StaticResource arrayMultiValueConverter}}"">
                                <Binding Path=""Text"" ElementName=""{dtColumnName}"" />
                                <Binding Path=""Text"" ElementName=""{"TbxFilter" + dtColumnName}"" />
                            </MultiBinding> …
Run Code Online (Sandbox Code Playgroud)

c# wpf eventtrigger xamlreader

8
推荐指数
1
解决办法
1624
查看次数

如何通过powershell删除文件夹的只读属性?

我已经尝试了很多代码,但仍然无法删除该特定文件夹的只读属性。

下面的代码删除了该文件夹下存在的文件的只读属性,但不删除该文件夹的只读属性:

$Path = "C:\Suraj\powershell scripts\review script" 
$Files = Get-ChildItem $Path -Recurse
ForEach ($File in $Files) {
    Write-Host file:$File IsReadOnly: $File.IsReadOnly 
    if ($File.Attributes -ne "Directory" -and $File.Attributes -ne "Directory, Archive") {
        try {
            Set-ItemProperty -Path $Path"\"$File -name IsReadOnly -value $false 
        }
        catch { 
            Write-Host "Error at file " $Path "\" $File 
        }
    } 
}
Run Code Online (Sandbox Code Playgroud)

powershell powershell-2.0 powershell-3.0 powershell-4.0

6
推荐指数
1
解决办法
1万
查看次数

Powershell 调用 RestMethod 错误 415 不支持的媒体类型

我正在尝试Azure Table Storage API使用 Powershell执行,Invoke-RestMethod但它返回415 error

这是Powershell代码:

$accessKey = "accesskey"
$account_name = "storage account"
$table_name = "table storage"
$date = "Fri, 10 Nov 2017 00:47:55 GMT"
$api_version = "2015-12-11"
$table_url = "https://$account_name.table.core.windows.net/$table_name"
$data_type = "application/json"
$signature = "generated signature"
$body = @{
Address="Mountain View";
Age="23"
}
$json = $body | Convertto-JSON
$table_headers = @{
"x-ms-date" = $date
"x-ms-version" = $api_version
"Authorization" = "SharedKey $account_name`:$signature"
"Content-Type" = $data_type
}

Invoke-RestMethod -Method POST -Uri $table_url -Headers …
Run Code Online (Sandbox Code Playgroud)

powershell azure invoke-command azure-table-storage

6
推荐指数
1
解决办法
8566
查看次数

ForEach-Object是对管道中的单个对象还是对象集合进行操作?

我很难掌握PowerShell管道的工作方式,并且我意识到很多问题都是由于ForEach-Object.在我使用的其他语言中,foreach在一个集合上运行,依次遍历集合的每个元素.我假设ForEach-Object,在PowerShell管道中使用时,也会这样做.但是,我读到的有关管道的所有内容都表明集合的每个元素都是分别通过管道传递的,并且重复调用下游cmdlet,分别对每个元素进行操作,而不是整个集合.

那么ForEach-Object对集合中的单个元素进行操作,而不是整个集合上的操作吗?以不同的方式查看它,管道操作符是否通过整个集合ForEach-Object,然后迭代它,或者管道对象是否迭代集合并将每个元素分别传递给ForEach-Object

powershell pipeline

3
推荐指数
1
解决办法
1820
查看次数

用于获取物理 CPU 数量的 Powershell 脚本

我尝试使用下面的脚本获取物理 CPU 的数量,但无法获得所需的结果。

get-wmiobject Win32_ComputerSystem
Run Code Online (Sandbox Code Playgroud)

有没有命令可以获取物理CPU的数量

powershell

3
推荐指数
1
解决办法
2万
查看次数

检查powershell版本并根据版本运行功能

我正在尝试检查powershell版本,并根据版本,由于不同版本之间的命令和语法差异,我需要运行特定的功能.我正在尝试创建一个仅包含版本号的变量,以便于比较.这是代码.

$PSversion = {$PSVersionTable.PSVersion | sort-object major | ForEach-Object     {$_.major}}

Switch ($PSversion) {
    2 {V2}
    4 {V4}
    5 {V5}
}

function V2 {
    "You have Powershell Version 2"
}

function V4 {
    "You have Powershell Version 4"
}

function V5 {
    "You have Powershell Version 5"
}
Run Code Online (Sandbox Code Playgroud)

当我运行脚本时,它返回一个空行,当我打印出变量的内容时,我得到了数字和一个新行.我已经尝试使用替换来摆脱新线路,但它始终存在.如果我将变量命令直接输入到PowerShell窗口,然后打印出变量的内容,我只得到版本号,没有新行.如果我从同一个PowerShell窗口运行脚本,我什么也得不到.

在此输入图像描述

任何有关这方面的帮助将不胜感激!我没有必要使用这种方法,任何方法来检查powershell版本并运行基于版本的功能都是我正在寻找的.

powershell

3
推荐指数
1
解决办法
9983
查看次数

使用 cmdlet 访问 AWS IAM 时出现 ObjectNotFound 错误

我正在尝试通过 powershell 生成 AWS API 网关访问密钥。但是,每次我尝试使用任何 cmdlet 时都会引发错误:

例如:

 Get-AWSCredential -ListProfileDetail
Run Code Online (Sandbox Code Playgroud)

会导致这样的错误:

Get-AWSCredential :术语“Get-AWSCredential”不被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确,然后重试。在行:1 char:1 + Get-AWSCredential -ListProfileDetail + ~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Get-AWSCredential:String) [], CommandNotFoundException +fullyQualifiedErrorId :命令未找到异常

当我通过 Get-Command 显示命令列表时,AWS cmdlet 不会弹出。知道可能是什么问题吗?

powershell cmdlets amazon-web-services aws-lambda

2
推荐指数
1
解决办法
5266
查看次数