本文整理汇总了C#中Store.SetAttribut方法的典型用法代码示例。如果您正苦于以下问题:C# Store.SetAttribut方法的具体用法?C# Store.SetAttribut怎么用?C# Store.SetAttribut使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Store
的用法示例。
在下文中一共展示了Store.SetAttribut方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btn_addstore_Click
private void btn_addstore_Click(object sender, EventArgs e)
{
if (txt_storeName.Text.Trim() == "")
{
MessageBox.Show("数据存储名称不能为空!");
return;
}
string StoreName=txt_storeName.Text.Trim();
foreach (Store itemstore in SysParam.ListStore)
{
if (itemstore.Name == StoreName)
{
MessageBox.Show("此名称已经被使用");
return;
}
}
string shapepath=txt_shapepath.Text;
Store newStore = new Store();
newStore.ID = "DataStoreInfoImpl--"+Guid.NewGuid().ToString();
newStore.Name = StoreName;
newStore.Description = txt_storedescription.Text.Trim();
newStore.Type = "Shapefile";
newStore.IsEnabled=ckb_isenabled.Checked?"true":"false";
newStore.WorkspaceID = SysParam.WordsSpaceSelected.ID;
newStore.Memory_Mapped_Buffer = ckb_cache_memory_map.Checked ? "true" : "false";
newStore.Timezone = "Asia/Shanghai";
newStore.Fstype = "shape";
newStore.Create_spatial_Index = ckb_create_index.Checked ? "true" : "false";
newStore.Charset = txt_dbf.Text.Trim();
newStore.FileType = "shapefile";
newStore.Cache_and_Reuse_Memory_Maps = ckb_cache_reuse_memory.Checked ? "true" : "false";
newStore.Enable_Spatial_Index = "true";
newStore.Url = shapepath;
newStore.Namespace = SysParam.WordsSpaceSelected.URI;
newStore.IsDefault = "false";
string newwppathstr = SysParam.GeoserverDataPath + "workspaces\\" + SysParam.WordsSpaceSelected.Name +"\\"+ StoreName;
if (!Directory.Exists(newwppathstr))
{
Directory.CreateDirectory(newwppathstr);
}
File.Copy(Application.StartupPath + "\\XmlTemplet\\DataStore\\datastore.xml", newwppathstr + "\\datastore.xml");
newStore.SetAttribut(SysParam.WordsSpaceSelected, newStore, newwppathstr + "\\datastore.xml");
com_storeslist.Items.Add(StoreName);
SysParam.ListStore.Add(newStore);
AddFeatrueTypeAndLayer(newwppathstr, txt_shapepath.Text, newStore);
}