Hi, i m using this code in .xaml, as i created userdefined control(textbox) NumericTextbox
<local:NumericTextBox Grid.Column="1"
local:NumericTextBox.Mask=" Decimal"
local:NumericTextBox.MaximumValue=" 255"
local:NumericTextBox.MinimumValue=" 0"
Name="abc"
Grid.Row="0"
Text="{Binding Path = IPAddressProperty}" />
rather, i want to access that numericaltextbox in .xaml.cs and i have to give that minimum and maximum value also in .xaml.cs file,
can anyone help me out please??