<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Axmapcontrol is flicking in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282213#M7286</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It depends on what you need to refresh.&amp;nbsp; By refreshing everyting, everything gets redrawn so flickering will happen.&amp;nbsp; If you look at the mapclass you can get from the map control, there is an IViewRefresh interface that has a partial referesh and other methods to better contain the scope of the refresh.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Oct 2013 11:53:47 GMT</pubDate>
    <dc:creator>AlexanderGray</dc:creator>
    <dc:date>2013-10-29T11:53:47Z</dc:date>
    <item>
      <title>Axmapcontrol is flicking</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282212#M7285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I m using Arcgis 10.1 engine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;On my program, when I refresh axmapcontrol, axmapcontrol is flicking. Please someone help me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 09:09:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282212#M7285</guid>
      <dc:creator>onurbeyaz</dc:creator>
      <dc:date>2013-10-29T09:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Axmapcontrol is flicking</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282213#M7286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It depends on what you need to refresh.&amp;nbsp; By refreshing everyting, everything gets redrawn so flickering will happen.&amp;nbsp; If you look at the mapclass you can get from the map control, there is an IViewRefresh interface that has a partial referesh and other methods to better contain the scope of the refresh.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 11:53:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282213#M7286</guid>
      <dc:creator>AlexanderGray</dc:creator>
      <dc:date>2013-10-29T11:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Axmapcontrol is flicking</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282214#M7287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thank you for answer ,I tried but it doesn't work. Here is my code :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void timer1_tick(object sender, EventArgs e)
{
if(checkBox_rotate_map.Checked)
{
axmapControl1.Rotation = angle;
angle = (angle+5 )%360;

axmapControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewBackground,null,null);
}
else 
{
axmapControl1.Rotation=0;
}
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Timer interval =100;&amp;nbsp; and axmapcontrol size 1000x500;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:40:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282214#M7287</guid>
      <dc:creator>onurbeyaz</dc:creator>
      <dc:date>2021-12-11T13:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Axmapcontrol is flicking</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282215#M7288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ya, if you refresh the background, it is going to refresh everything.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Think of a map as a series of transparent layers one ontop of the others.&amp;nbsp; If you want to refresh to top layer (foreground), no problem, just remove the top layer, throw it away and make a new one and place it on top.&amp;nbsp; If you want to refresh a middle layer (geo selection for example), you throw away that layer and everything on top, graphics, graphics selection, foreground and redraw all those, you keep those bellow.&amp;nbsp; The background is like the bottom layer so there is not much to save with a partial refresh, specially since you don't pass in an extent to limit it (null means refresh everything.)&amp;nbsp; You might want to look at basemap layers to improve rendering.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 18:04:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282215#M7288</guid>
      <dc:creator>AlexanderGray</dc:creator>
      <dc:date>2013-10-29T18:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Axmapcontrol is flicking</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282216#M7289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;but, When I tried this code with Arcgis 10.0 , it was running without flicking.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 14:19:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/axmapcontrol-is-flicking/m-p/282216#M7289</guid>
      <dc:creator>onurbeyaz</dc:creator>
      <dc:date>2013-10-30T14:19:12Z</dc:date>
    </item>
  </channel>
</rss>

