Cách chính xác để nhận danh sách "trang" thông qua một lớp kế thừa từ System.Configuration.Section nếu tôi đã sử dụng app.config như thế này?Custom app.config Config Section Handler
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="XrbSettings" type="Xrb.UI.XrbSettings,Xrb.UI" />
</configSections>
<XrbSettings>
<pages>
<add title="Google" url="http://www.google.com" />
<add title="Yahoo" url="http://www.yahoo.com" />
</pages>
</XrbSettings>
</configuration>
Liên kết đã bị hỏng theo thời gian – Hoppe
@Hoppe nếu bạn muốn triển khai mẫu khác mà tôi đã thực hiện tại đây: http://stackoverflow.com/a/33544322/1955317 – Squazz