我正在使用新版Visual Studio 2015 (Community)
。
我注意到在XAML设计器中,FontSize
的默认单位限定符为Pt (point)
。
但是我希望将Px (pixel)
作为默认设置(如之前的VS版本)。
我在VS的设置中环顾四周,但我似乎无法找到任何改变它的选项。
任何人都知道如何改变这个?
答案 0 :(得分:0)
WPF defaults to px. To force WPF to use a different unit of measurement, just append the unit abbreviation to the FontSize.
pos = pos
w = 10
rad = 70 - w/2
b_c = (34/255, 139/255, 34/255)
ctx.set_line_width(w)
ctx.set_source_rgb(b_c[0], b_c[1], b_c[2])
ctx.arc_negative(pos[0], pos[1], rad, 0, -pi/2)
ctx.arc_negative(pos[0], pos[1], rad, pi, pi/2)
#ctx.close_path()
ctx.stroke()
#ctx.stroke_preserve()
#ctx.fill()
ctx.set_line_width(3)
ctx.set_source_rgb(0, 0, 0)
ctx.arc_negative(pos[0], pos[1], rad +w/2 - 3/2, 0, -pi/2)
ctx.arc_negative(pos[0], pos[1], rad +w/2 - 3/2, pi, pi/2)
ctx.close_path()
ctx.stroke()
ctx.arc_negative(pos[0], pos[1], rad, 0, -pi/2)
ctx.arc_negative(pos[0], pos[1], rad, pi, pi/2)
ctx.close_path()
ctx.stroke()
draw_spikes(ctx, pos, rad + w/2)