开发者

How to display this WPF ListView with a vertical toolbar?

开发者 https://www.devze.com 2023-02-28 19:40 出处:网络
I\'m using PowerShell and the WPK toolkit the following New-ListView -Name TableView -View { New-GridView -AllowsColumnReorder -Columns {

I'm using PowerShell and the WPK toolkit

the following

New-ListView -Name TableView -View {
   New-GridView -AllowsColumnReorder -Columns {
       New-GridViewColumn "title" 
       New-GridViewColumn "dateAdded" 
       New-GridViewColumn "url" 
   }
}

is filled with a variable number of rows via

    $TableView.ItemsSource = invoke-sqlitequery -sql $ff_sql -connection 开发者_JAVA技巧$conn -asResult 'DataRow'

What is missing to get a vertical toolbar ?

0

精彩评论

暂无评论...
验证码 换一张
取 消