Я новичок в VB.Net.У меня есть требования, которые мне нужны для создания настраиваемого раздела конфигурации.Я прочитал некоторые документы, но не могу заставить его работать.Цени любую помощь.
Мне нужно прочитать в разделе конфигурации с такой структурой.
<configSections>
<section name="reportingTabCollectionSection" type="mydll.ReportingTabSection, mydll"/>
</configSections>
<reportingTabCollectionSection>
<reportingTabCollection>
<reportingTab tabName="Parent Tab 1" visible="true">
<reportingTab tabName="Son 1" visible="true"/>
<reportingTab tabName="Son 2" visible="true"/>
</reportingTab>
<reportingTab tabName="Parent Tab 2" visible="false">
<reportingTab tabName="Child 1" visible="true"/>
<reportingTab tabName="Child 2" visible="true"/>
</reportingTab>
</reportingTabCollection>
</reportingTabCollectionSection>
Или как структура этого класса
Public Class ReportTab
Public Property TabName As String
Public Property Visible As Boolean
Public Property SubTab As IList(Of ReportTab)
End Class