데이터 표준 및 번호 매기기 체계

DSNumSchemeCtrl이라고 하는 XAML 컨트롤은 Vault 클라이언트, Inventor Vault 애드인 및 AutoCAD Vault 애드인의 데이터 표준 대화상자에서 번호 매기기 체계를 지원하는 데 사용됩니다.

번호 매기기 체계 사용자 인터페이스

다음 줄은 이전 이미지에 표시되는 UI 컨트롤을 표시하기 위해 XAML 파일에서 필요합니다.

...
        <Label Content="{Binding UIString[LBL10]}" Grid.Column="0" Grid.Row="6" />
        <ComboBox Grid.Column="1" Grid.Row="6" Name="NumSchms" SelectedIndex="0" Style="{StaticResource NumSchmStyle}"></ComboBox>
        <Label Content="{Binding UIString[LBL31]}" Grid.Column="0" Grid.Row="8"></Label>
        <WPF:DSNumSchemeCtrl Grid.Column="1" Grid.Row="8" Name="NUMSCHEME" IsEnabled="{Binding ElementName=NumSchms, Path=IsEnabled}" Scheme="{Binding ElementName=NumSchms, Path=SelectedItem}" GeneratedNumberProperty="_GeneratedNumber" />
...

필수 속성

사용자 컨트롤 DSNumSchemeCtrl에는 두 가지 필수 사용자 속성이 있습니다.

번호 매기기 체계 샘플 사용자화된 번호 매기기 체계에 대한 예입니다.