Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 388 Bytes

GridHelper.md

File metadata and controls

11 lines (10 loc) · 388 Bytes

Helper

GridHelper

StringToGridLength

Convert string to GridLength. The default value is GridLength.Auto.

GridLength width = GridHelper.StringToGridLength("Auto"); // Auto
GridLength width = GridHelper.StringToGridLength("*"); // 1*
GridLength width = GridHelper.StringToGridLength("2*"); // 2*
GridLength width = GridHelper.StringToGridLength("100"); // 100