本文整理汇总了C#中Utilities.WriteToRegistry方法的典型用法代码示例。如果您正苦于以下问题:C# Utilities.WriteToRegistry方法的具体用法?C# Utilities.WriteToRegistry怎么用?C# Utilities.WriteToRegistry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utilities
的用法示例。
在下文中一共展示了Utilities.WriteToRegistry方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: button1_Click
private void button1_Click(object sender, EventArgs e)
{
//write the key
Utilities Utils = new Utilities();
string sDesktopVers = Utils.GetDesktopVersionFromRegistry();
if (sDesktopVers.Trim() == "")
sDesktopVers = "Desktop10.1";
else
sDesktopVers = "Desktop" + sDesktopVers;
string sBool0 = this.optManualEnteredDirnOffset.Checked.ToString();
string sTxt1 = this.txtDirectionOffset.Text;
IAngularConverter pAngConv = new AngularConverterClass();
if (!pAngConv.SetString(sTxt1, esriDirectionType.esriDTNorthAzimuth, m_EditorProperties.DirectionUnits))
sTxt1 = "0";
else
sTxt1 = pAngConv.GetString(esriDirectionType.esriDTNorthAzimuth, esriDirectionUnits.esriDUDecimalDegrees, 6);//always write as decimal deg
string sBool2 = this.optComputeDirnOffset.Checked.ToString();
string sBool3 = this.chkDirectionDifference.Checked.ToString();
string sTxt4 = this.txtDirectionDifference.Text;
string sBool5 = this.chkSubtendedDistance.Checked.ToString();
string sTxt6 = this.txtSubtendedDist.Text;
string sBool7 = this.chkReportResults.Checked.ToString();
Utils.WriteToRegistry(RegistryHive.CurrentUser, "Software\\ESRI\\" +
sDesktopVers + "\\ArcMap\\Cadastral", "AddIn.FabricQualityControl_InverseDirection",
sBool0 + "," + sTxt1 + "," + sBool2 + "," + sBool3 + "," + sTxt4 + "," + sBool5 + "," + sTxt6 + "," + sBool7);
}