PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Banjo [XML]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<Button Content="My Button" Height="35" HorizontalAlignment="Left" Margin="192,176,0,0" Name="button1" VerticalAlignment="Top" Width="117" UseLayoutRounding="True" OverridesDefaultStyle="False"> <Button.BorderBrush> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#FFD5D5D5" Offset="0" /> <GradientStop Color="#FF9B9B9B" Offset="1" /> </LinearGradientBrush> </Button.BorderBrush> <Button.Background> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#FFFDFDFD" Offset="0" /> <GradientStop Color="#FFD9D9D9" Offset="1" /> </LinearGradientBrush> </Button.Background> </Button> |