标签:convert wpf 数字 else bsp viewport .text html http
原文:WPF中将四个数字字符串值(比如:"10,10,300,300")转为RectRectConverter rectConverter = new RectConverter(); string parseString = viewportEntry.Text; if (parseString != null && parseString != string.Empty) { imageBrush.Viewport = (Rect)rectConverter.ConvertFromString(parseString); } else { imageBrush.Viewport = Rect.Empty; viewportEntry.Text = "Empty"; }
WPF中将四个数字字符串值(比如:"10,10,300,300")转为Rect
标签:convert wpf 数字 else bsp viewport .text html http
原文地址:https://www.cnblogs.com/lonelyxmas/p/9589386.html