示例#1
0
        void ucColorRampSelector_Load(object sender, EventArgs e)
        {
            this.axSymbologyControl1.Visible = false;

            string stylePath = ConfigurationManager.AppSettings["ESRI.ServerStyle"];
            //颜色带
            this.axSymbologyControl1.StyleClass = esriSymbologyStyleClass.esriStyleClassColorRamps;
            this.axSymbologyControl1.LoadStyleFile(stylePath);
            this.custom_ColorRampCombobox.SymbologyStyleClass = this.axSymbologyControl1.GetStyleClass(this.axSymbologyControl1.StyleClass);

            this.custom_ColorRampCBB = this.custom_ColorRampCombobox;
        }
示例#2
0
        void ucColorRampSelector_Load(object sender, EventArgs e)
        {
            this.axSymbologyControl1.Visible = false;

            string stylePath = ConfigurationManager.AppSettings["ESRI.ServerStyle"];

            if (System.IO.File.Exists(stylePath))
            {
                //颜色带
                this.axSymbologyControl1.StyleClass = esriSymbologyStyleClass.esriStyleClassColorRamps;
                this.axSymbologyControl1.LoadStyleFile(stylePath);
                this.custom_ColorRampCombobox.SymbologyStyleClass = this.axSymbologyControl1.GetStyleClass(this.axSymbologyControl1.StyleClass);

                this.custom_ColorRampCBB = this.custom_ColorRampCombobox;
            }
        }