1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Bmp.WinForms
- {
- internal static class Const
- {
- internal const string AppTitle = "马鹿音乐播放器"
- #if DEBUG
- +"(调试构建)"
- #endif
- ;
- }
- }
|