tengo los dos botones siguientes en XAML:¿Cómo puedo definir una variable en XAML?
<Button Content="Previous"
Margin="10,0,0,10"/>
<Button Content="Next"
Margin="0,0,10,10"/>
¿Cómo puedo definir "10" a ser una variable para que pueda cambiarlo en un solo lugar, algo como esto:
PSEUDO CÓDIGO:
<variable x:key="theMargin"/>
<Button Content="Previous"
Margin="{Variable theMargin},0,0,{Variable theMargin}"/>
<Button Content="Next"
Margin="0,0,{Variable theMargin},{Variable theMargin}"/>
hmmm, añado 2.35 System: Double> en Window.Resources y obtuve "System: Double was not found", agregué "System" como referencia pero no lo hice t ayuda, ¿qué me estoy perdiendo? –
El doble no aparece en el menú desplegable, solo p. "RegistryHive" y otros tres, tengo referencias de System.Core, ¿a qué más debo hacer referencia? –
Encontré mi problema: estaba agregando este xmlns: System = "clr-namespace: Microsoft.Win32; assembly = mscorlib" y debería haber estado agregando esto: xmlns: System = "clr-namespace: System; assembly = mscorlib" –