<ItemsControl ItemsSource="{Binding ListByteModel,Mode=TwoWay}" x:Name="agc" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<ComboBox materialDesign:HintAssist.Hint="{Binding ByteName}"
materialDesign:HintAssist.FontFamily="Verdana"
Margin="0,9,0,0"
MinWidth="72"
Name="cbByte"
Style="{StaticResource MaterialDesignFloatingHintComboBox}"
ItemsSource="{Binding ListValue}"
SelectedValuePath="Key"
DisplayMemberPath="Value" Tag="{Binding TagType}"
cals:Message.Attach="[Event SelectionChanged]=[Action cbByte_SelectionChanged(cbByte.SelectedValue,cbByte.Tag)]"
cals:Action.TargetWithoutContext="{Binding ElementName=agc,Path=DataContext}"
IsEnabled="{Binding IsEnabled}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>