Пример #1
0
        private void UpdateDeleteReleaseList(string storageID)
        {
            list.Children.Remove(UIFindHelper.GetChildObject <Canvas>(list, "canvas" + storageID));
            //list.Height -= 50;
            //for (int i = 0; i < list.Children.Count; i++)
            //{
            //    list.Children.RemoveAt(i);
            //    list.Height -= 50;
            //}

            //int count = AccessHelper.GetGameStorageCountFromUserID(userID);
            //for (int i = 0; i < count; i++)
            //{
            //    MenuCenter.CreateUserReleaseInfo(list, i, userID);
            //}
        }
Пример #2
0
        private void UpdateReleaseList(string storageID)
        {
            //Console.WriteLine(list.Children.Count);
            //Canvas canvas = UIFindHelper.GetChildObject<Canvas>(list, "canvas" + storageID);
            Label info = UIFindHelper.GetChildObject <Label>(list, "info" + storageID);
            //label.Content = AccessHelper.GetGameStorage(gameid) + "条交易信息";

            string userid = AccessHelper.GetGameStorageUserID(storageID);
            string gameid = AccessHelper.GetGameStorageGameID(storageID);

            if (AccessHelper.GetGameStorageType(storageID) == "交换")
            {
                info.Content = "用户 " + AccessHelper.GetUserNickName(userid) + " 想要用《" + AccessHelper.GetGameZhName(gameid) + "》交换《" + AccessHelper.GetGameStorageChangeGame(storageID) + "》";
            }
            else if (AccessHelper.GetGameStorageType(storageID) == "出售")
            {
                info.Content = "用户 " + AccessHelper.GetUserNickName(userid) + " 想要以" + AccessHelper.GetGameStoragePrice(storageID) + "元 出售《" + AccessHelper.GetGameZhName(gameid) + "》";
            }
            else if (AccessHelper.GetGameStorageType(storageID) == "出租")
            {
                info.Content = "用户 " + AccessHelper.GetUserNickName(userid) + " 想要以" + AccessHelper.GetGameStoragePrice(storageID) + "元/日 出租《" + AccessHelper.GetGameZhName(gameid) + "》";
            }
        }
Пример #3
0
        private void UpdateGameInfo(string gameid)
        {
            Label label = UIFindHelper.GetChildObject <Label>(list, "storage" + gameid);

            label.Content = AccessHelper.GetGameStorage(gameid) + "条交易信息";
        }