This commit is contained in:
milimoe 2025-03-12 22:06:14 +08:00
parent 4e72558b10
commit ef8d1e8a2f
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E

View File

@ -320,6 +320,7 @@ namespace Milimoe.FunGame.Desktop.UI
// NowRoomID // NowRoomID
// //
NowRoomID.AllowDrop = true; NowRoomID.AllowDrop = true;
NowRoomID.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
NowRoomID.Font = new Font("LanaPixel", 12F); NowRoomID.Font = new Font("LanaPixel", 12F);
NowRoomID.ForeColor = Color.DarkGray; NowRoomID.ForeColor = Color.DarkGray;
NowRoomID.Location = new Point(6, 226); NowRoomID.Location = new Point(6, 226);
@ -333,6 +334,7 @@ namespace Milimoe.FunGame.Desktop.UI
// //
// CopyRoomID // CopyRoomID
// //
CopyRoomID.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
CopyRoomID.Font = new Font("LanaPixel", 12F); CopyRoomID.Font = new Font("LanaPixel", 12F);
CopyRoomID.Location = new Point(126, 225); CopyRoomID.Location = new Point(126, 225);
CopyRoomID.Name = "CopyRoomID"; CopyRoomID.Name = "CopyRoomID";
@ -345,7 +347,7 @@ namespace Milimoe.FunGame.Desktop.UI
// //
// RoomList // RoomList
// //
RoomList.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; RoomList.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
RoomList.BorderStyle = BorderStyle.FixedSingle; RoomList.BorderStyle = BorderStyle.FixedSingle;
RoomList.FormattingEnabled = true; RoomList.FormattingEnabled = true;
RoomList.Location = new Point(0, 26); RoomList.Location = new Point(0, 26);
@ -367,6 +369,7 @@ namespace Milimoe.FunGame.Desktop.UI
// //
// RefreshRoomList // RefreshRoomList
// //
RefreshRoomList.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
RefreshRoomList.Font = new Font("LanaPixel", 12F); RefreshRoomList.Font = new Font("LanaPixel", 12F);
RefreshRoomList.Image = Properties.Resources.refresh; RefreshRoomList.Image = Properties.Resources.refresh;
RefreshRoomList.Location = new Point(162, 248); RefreshRoomList.Location = new Point(162, 248);
@ -378,7 +381,7 @@ namespace Milimoe.FunGame.Desktop.UI
// //
// Notice // Notice
// //
Notice.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left; Notice.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
Notice.BackColor = Color.Transparent; Notice.BackColor = Color.Transparent;
Notice.Controls.Add(NoticeText); Notice.Controls.Add(NoticeText);
Notice.Font = new Font("LanaPixel", 12F); Notice.Font = new Font("LanaPixel", 12F);
@ -391,7 +394,7 @@ namespace Milimoe.FunGame.Desktop.UI
// //
// NoticeText // NoticeText
// //
NoticeText.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; NoticeText.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
NoticeText.BorderStyle = BorderStyle.None; NoticeText.BorderStyle = BorderStyle.None;
NoticeText.EmptyTextTip = null; NoticeText.EmptyTextTip = null;
NoticeText.Location = new Point(6, 24); NoticeText.Location = new Point(6, 24);