创建标题区域
(self, parent_layout)
| 117 | parent_layout.addLayout(top_layout) |
| 118 | |
| 119 | def _create_title_section(self, parent_layout): |
| 120 | """创建标题区域""" |
| 121 | self.title_label = TitleLabel(get_text("app.title"), 18) |
| 122 | parent_layout.addWidget(self.title_label) |
| 123 | |
| 124 | self.welcome_label = SecondaryLabel(get_text("app.welcome")) |
| 125 | self.welcome_label.setAlignment(Qt.AlignmentFlag.AlignCenter) |
| 126 | parent_layout.addWidget(self.welcome_label) |
| 127 | |
| 128 | def _create_ide_section(self, parent_layout): |
| 129 | """创建IDE选择区域""" |
no test coverage detected