本文整理汇总了C#中Utilities.ReadFromRegistry方法的典型用法代码示例。如果您正苦于以下问题:C# Utilities.ReadFromRegistry方法的具体用法?C# Utilities.ReadFromRegistry怎么用?C# Utilities.ReadFromRegistry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utilities
的用法示例。
在下文中一共展示了Utilities.ReadFromRegistry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InverseDirectionDLG
public InverseDirectionDLG(IEditProperties2 EditorProperties)
{
InitializeComponent();
m_ToolTip1 = new System.Windows.Forms.ToolTip();
m_EditorProperties = EditorProperties;
Utilities Utils = new Utilities();
string sDesktopVers = Utils.GetDesktopVersionFromRegistry();
if (sDesktopVers.Trim() == "")
sDesktopVers = "Desktop10.1";
else
sDesktopVers = "Desktop" + sDesktopVers;
string sValues =
Utils.ReadFromRegistry(RegistryHive.CurrentUser, "Software\\ESRI\\" + sDesktopVers + "\\ArcMap\\Cadastral",
"AddIn.FabricQualityControl_InverseDirection");
IAngularConverter pAngConv = new AngularConverterClass();
if (m_EditorProperties != null)
{
esriDirectionUnits pUnits = m_EditorProperties.DirectionUnits;
string sAngleUnits = pUnits.ToString();
sAngleUnits = sAngleUnits.Replace("esriDU", "");
sAngleUnits = sAngleUnits.Replace("Minutes", " Minutes ");
sAngleUnits = sAngleUnits.Replace("Decimal", "Decimal ");
this.lblAngleUnits.Text = sAngleUnits;
}
if (sValues.Trim() == "")
sValues = "False,0.000000,True,True,180,True,0.3,True";
string[] Values = sValues.Split(',');
try
{
string sTxt1 = Values[1];
if (m_EditorProperties != null)
{
int iPrec = m_EditorProperties.AngularUnitPrecision;
pAngConv.SetString(Values[1], esriDirectionType.esriDTNorthAzimuth, esriDirectionUnits.esriDUDecimalDegrees); //registry always stores in DD
sTxt1 = pAngConv.GetString(esriDirectionType.esriDTNorthAzimuth, m_EditorProperties.DirectionUnits, m_EditorProperties.AngularUnitPrecision);
}
this.optManualEnteredDirnOffset.Checked = (Values[0].Trim() == "True");
this.txtDirectionOffset.Text = sTxt1;
this.optComputeDirnOffset.Checked = (Values[2].Trim() == "True");
this.chkDirectionDifference.Checked = (Values[3].Trim() == "True");
this.txtDirectionDifference.Text = Values[4];
this.chkSubtendedDistance.Checked = (Values[5].Trim() == "True");
this.txtSubtendedDist.Text = Values[6];
this.chkReportResults.Checked = (Values[7].Trim() == "True");
}
catch
{ }
}