Public/Set-WFDataGridView.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
function Set-WFDataGridView { <# .SYNOPSIS This function helps you edit the datagridview control .DESCRIPTION This function helps you edit the datagridview control .PARAMETER DataGridView Specifies the DataGridView Control .PARAMETER AlternativeRowColor Specifies the color of the alternative row color .PARAMETER DefaultRowColor Specifies the color of the default row color .PARAMETER ForeColor Specifies the color of the text .PARAMETER BackColor Specifies the background color .PARAMETER ProperFormat Set the datagirdview to the proper format .PARAMETER FontFamily Specifies the the Font family to use .PARAMETER FontSize Specifies the Font size .PARAMETER HideRowHeader Hide the Row Header .PARAMETER ShowRowHeader Show the Row Header .PARAMETER HideColumnHeader Hide the Column Header .PARAMETER ShowColumnHeader Show the Column Header .EXAMPLE Set-WFDataGridView -DataGridView $datagridview1 -ProperFormat -FontFamily $listboxFontFamily.Text -FontSize $listboxFontSize.Text .EXAMPLE Set-WFDataGridView -DataGridView $datagridview1 -AlternativeRowColor -BackColor 'AliceBlue' -ForeColor 'Black' .EXAMPLE Set-WFDataGridView -DataGridView $datagridviewOutput -DefaultRowColor -BackColor 'Beige' -ForeColor 'Brown' .EXAMPLE Set-DataGridViewRowHeader -DataGridView $datagridview1 -HideRowHeader This will hide the Row Header .EXAMPLE Set-DataGridViewRowHeader -DataGridView $datagridview1 -ShowRowHeader This will show the Row Header .EXAMPLE Set-DataGridViewRowHeader -DataGridView $datagridview1 -HideColumnHeader This will hide the Column Header .EXAMPLE Set-DataGridViewRowHeader -DataGridView $datagridview1 -ShowColumnHeader This will show the Column Header .NOTES Author: Francois-Xavier Cat Twitter:@LazyWinAdm www.lazywinadmin.com github.com/lazywinadmin #> [CmdletBinding(DefaultParameterSetName = 'ShowRowHeader', SupportsShouldProcess = $true)] param ( [Parameter(Mandatory = $true)] [ValidateNotNull()] [System.Windows.Forms.DataGridView]$DataGridView, [Parameter(ParameterSetName = 'AlternativeRowColor', Mandatory = $true)] [Switch]$AlternativeRowColor, [Parameter(ParameterSetName = 'DefaultRowColor')] [Switch]$DefaultRowColor, [Parameter(ParameterSetName = 'AlternativeRowColor', Mandatory = $true)] [Parameter(ParameterSetName = 'DefaultRowColor')] [System.Drawing.Color]$ForeColor, [Parameter(ParameterSetName = 'AlternativeRowColor', Mandatory = $true)] [Parameter(ParameterSetName = 'DefaultRowColor')] [System.Drawing.Color]$BackColor, [Parameter(ParameterSetName = 'Proper', Mandatory = $true)] [Switch]$ProperFormat, [Parameter(ParameterSetName = 'Proper')] [String]$FontFamily = "Consolas", [Parameter(ParameterSetName = 'Proper')] [Int]$FontSize = 10, [Parameter(ParameterSetName = 'HideRowHeader')] [Switch]$HideRowHeader, [Parameter(ParameterSetName = 'ShowRowHeader')] [Switch]$ShowRowHeader, [Parameter(ParameterSetName = 'HideColumnHeader')] [Switch]$HideColumnHeader, [Parameter(ParameterSetName = 'ShowColumnHeader')] [Switch]$ShowColumnHeader ) BEGIN { Add-Type -AssemblyName System.Windows.Forms } PROCESS { if ($psboundparameters['AlternativeRowColor']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Set the Alternative row color. ForeColor: $ForeColor, BackColor: $BackColor")) { $DataGridView.AlternatingRowsDefaultCellStyle.ForeColor = $ForeColor $DataGridView.AlternatingRowsDefaultCellStyle.BackColor = $BackColor } } if ($psboundparameters['DefaultRowColor']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Set the Default row color. ForeColor: $ForeColor, BackColor: $BackColor")) { $DataGridView.RowsDefaultCellStyle.ForeColor = $ForeColor $DataGridView.RowsDefaultCellStyle.BackColor = $BackColor } } if ($psboundparameters['ProperFormat']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Set the Border Header Style to 'Raised', Border Style to 'Fixed3D', Selection Mode to 'FullRowSelected', Disable resizable row, Set the font to $FontFamily with a the size $FontSize")) { #$Font = New-Object -TypeName System.Drawing.Font -ArgumentList "Segoi UI", 10 $Font = New-Object -TypeName System.Drawing.Font -ArgumentList $FontFamily, $FontSize #[System.Drawing.FontStyle]::Bold $DataGridView.ColumnHeadersBorderStyle = 'Raised' $DataGridView.BorderStyle = 'Fixed3D' $DataGridView.SelectionMode = 'FullRowSelect' $DataGridView.AllowUserToResizeRows = $false $datagridview.DefaultCellStyle.font = $Font } } if ($psboundparameters['HideRowHeader']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Hide the Row Header")) { $DataGridView.RowHeadersVisible = $false } } if ($psboundparameters['ShowRowHeader']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Show the Row Header")) { $DataGridView.RowHeadersVisible = $true } } if ($psboundparameters['HideColumnHeader']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Hide the Column Header")) { $DataGridView.ColumnHeadersVisible = $false } } if ($psboundparameters['ShowColumnHeader']) { IF ($PSCmdlet.ShouldProcess($DataGridView, "Show the Column Header")) { $DataGridView.ColumnHeadersVisible = $true } } } } |