private void AcceptButton_OnButtonClick(UIElement button)
        {
            var sim = new UISim(Guid.NewGuid(), false);

            sim.Name         = NameTextEdit.CurrentText;
            sim.Sex          = System.Enum.GetName(typeof(Gender), Gender);
            sim.Description  = DescriptionTextEdit.CurrentText;
            sim.Timestamp    = DateTime.Now.ToString("yyyy.MM.dd hh:mm:ss");
            sim.ResidingCity = SelectedCity;

            var selectedHead    = (CollectionItem)((UIGridViewerItem)m_HeadSkinBrowser.SelectedItem).Data;
            var selectedBody    = (CollectionItem)((UIGridViewerItem)m_BodySkinBrowser.SelectedItem).Data;
            var headPurchasable = Content.Get().AvatarPurchasables.Get(selectedHead.PurchasableOutfitId);
            var bodyPurchasable = Content.Get().AvatarPurchasables.Get(selectedBody.PurchasableOutfitId);

            sim.Head              = Content.Get().AvatarOutfits.Get(headPurchasable.OutfitID);
            sim.HeadOutfitID      = headPurchasable.OutfitID;
            sim.Body              = Content.Get().AvatarOutfits.Get(bodyPurchasable.OutfitID);
            sim.BodyOutfitID      = bodyPurchasable.OutfitID;
            sim.Handgroup         = Content.Get().AvatarOutfits.Get(bodyPurchasable.OutfitID);
            sim.Avatar.Appearance = this.AppearanceType;

            //GameFacade.Controller.ShowCity();
            PlayerAccount.CurrentlyActiveSim = sim;

            if (PlayerAccount.Sims.Count == 0)
            {
                PlayerAccount.Sims.Add(sim);
            }
            else if (PlayerAccount.Sims.Count == 2)
            {
                PlayerAccount.Sims[1] = sim;
            }
            else if (PlayerAccount.Sims.Count == 3)
            {
                PlayerAccount.Sims[2] = sim;
            }

            UIPacketSenders.SendCharacterCreate(sim, DateTime.Now.ToString());
        }