Exemplo n.º 1
0
 private void Resetbutton_Click(object sender, EventArgs e)
 {
     PhonetextBox.Clear();
     Nametexbox.Clear();
     NotextBox.Clear();
     ApartmentBox.Clear();
     VillageBox.Clear();
     Soibox.Clear();
     StreetBox.Clear();
     SubdistBox.Clear();
     DistBox.Clear();
     ProvinceBox.Clear();
     DetailBox.Clear();
 }
Exemplo n.º 2
0
 public BeatmapDetails()
 {
     Children = new Drawable[]
     {
         new Box
         {
             RelativeSizeAxes = Axes.Both,
             Colour           = Color4.Black.Opacity(0.5f),
         },
         new Container
         {
             RelativeSizeAxes = Axes.Both,
             Padding          = new MarginPadding {
                 Horizontal = spacing
             },
             Children = new Drawable[]
             {
                 top = new FillFlowContainer
                 {
                     RelativeSizeAxes = Axes.X,
                     AutoSizeAxes     = Axes.Y,
                     Direction        = FillDirection.Horizontal,
                     Children         = new Drawable[]
                     {
                         statsFlow = new FillFlowContainer
                         {
                             RelativeSizeAxes = Axes.X,
                             AutoSizeAxes     = Axes.Y,
                             Width            = 0.5f,
                             Spacing          = new Vector2(spacing),
                             Padding          = new MarginPadding {
                                 Right = spacing / 2
                             },
                             Children = new[]
                             {
                                 new DetailBox
                                 {
                                     Child = advanced = new AdvancedStats
                                     {
                                         RelativeSizeAxes = Axes.X,
                                         AutoSizeAxes     = Axes.Y,
                                         Padding          = new MarginPadding {
                                             Horizontal = spacing, Top = spacing * 2, Bottom = spacing
                                         },
                                     },
                                 },
                                 ratingsContainer = new DetailBox
                                 {
                                     Child = ratings = new UserRatings
                                     {
                                         RelativeSizeAxes = Axes.X,
                                         Height           = 134,
                                         Padding          = new MarginPadding {
                                             Horizontal = spacing, Top = spacing
                                         },
                                     },
                                 },
                             },
                         },
                         metadataScroll = new ScrollContainer
                         {
                             RelativeSizeAxes = Axes.X,
                             Width            = 0.5f,
                             ScrollbarVisible = false,
                             Padding          = new MarginPadding {
                                 Left = spacing / 2
                             },
                             Child = new FillFlowContainer
                             {
                                 RelativeSizeAxes = Axes.X,
                                 AutoSizeAxes     = Axes.Y,
                                 LayoutDuration   = transition_duration,
                                 Spacing          = new Vector2(spacing * 2),
                                 Margin           = new MarginPadding {
                                     Top = spacing * 2
                                 },
                                 Children = new[]
                                 {
                                     description = new MetadataSection("Description"),
                                     source      = new MetadataSection("Source"),
                                     tags        = new MetadataSection("Tags"),
                                 },
                             },
                         },
                     },
                 },
                 failRetryContainer = new Container
                 {
                     Anchor           = Anchor.BottomLeft,
                     Origin           = Anchor.BottomLeft,
                     RelativeSizeAxes = Axes.X,
                     Children         = new Drawable[]
                     {
                         new OsuSpriteText
                         {
                             Text     = "Points of Failure",
                             Font     = @"Exo2.0-Bold",
                             TextSize = 14,
                         },
                         failRetryGraph = new FailRetryGraph
                         {
                             RelativeSizeAxes = Axes.Both,
                             Padding          = new MarginPadding {
                                 Top = 14 + spacing / 2
                             },
                         },
                     },
                 },
             },
         },
         loading = new DimmedLoadingAnimation
         {
             RelativeSizeAxes = Axes.Both,
         },
     };
 }