Windows Vista Forums
Vista Forums Home Join Vista Forums Donate Vista Tutorials Tags

Welcome to Vista Forums we are your forum to discuss Windows Vista x64 and x86 systems. Whether you need help or just want to post an idea you have on Vista, this is the forum for you.
Register at Vista forums...the world biggest Windows Vista resource Join Vista Forums Now

Go Back   Vista Forums > Microsoft Technical Newsgroups > Avalon

SmartTag

Closed Thread
 
Thread Tools Display Modes
Old 11-21-2006   #1 (permalink)
Jan Kucera
Guest


 

SmartTag

Any idea how to implement such thing like SmartTag into WPF app?

Thanks,
Jan
Old 11-22-2006   #2 (permalink)
Stoitcho Goutsev \(100\)
Guest


 

Re: SmartTag

Jan,

By SmartTag do you mean the little box that shows up in the corner of the
control at design time and drops down a menu-like control with properties?
If this is what you meant then I'm afraid that this feature is not supported
in Cider anymore. However Cider has pretty powerfull extensibility model
based on adornments that can be used to implement this feature.
Download the latest CTP of Cider and look at the docs to see how the new
extensibility model works.


--
HTH
Stoitcho Goutsev (100)

"Jan Kucera" <uam@centrum.cz> wrote in message
news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
> Any idea how to implement such thing like SmartTag into WPF app?
>
> Thanks,
> Jan



Old 11-22-2006   #3 (permalink)
Stoitcho Goutsev \(100\)
Guest


 

Re: SmartTag

Jan,

By SmartTag do you mean the little box that shows up in the corner of the
control at design time and drops down a menu-like control with properties?
If this is what you meant then I'm afraid that this feature is not supported
in Cider anymore. However Cider has pretty powerfull extensibility model
based on adornments that can be used to implement this feature.
Download the latest CTP of Cider and look at the docs to see how the new
extensibility model works.


--
HTH
Stoitcho Goutsev (100)

"Jan Kucera" <uam@centrum.cz> wrote in message
news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
> Any idea how to implement such thing like SmartTag into WPF app?
>
> Thanks,
> Jan



Old 11-22-2006   #4 (permalink)
Jan Kucera
Guest


 

Re: SmartTag

Hi Stoitcho,
yes this is the thing. However, instead of looking for that in Cider, I
would like to write my own application in WPF which could display smart
tags... but I have no idea how to write such smart tag using code...

Jan


"Stoitcho Goutsev (100)" <100@100.com> wrote in message
news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
> Jan,
>
> By SmartTag do you mean the little box that shows up in the corner of the
> control at design time and drops down a menu-like control with properties?
> If this is what you meant then I'm afraid that this feature is not
> supported in Cider anymore. However Cider has pretty powerfull
> extensibility model based on adornments that can be used to implement this
> feature.
> Download the latest CTP of Cider and look at the docs to see how the new
> extensibility model works.
>
>
> --
> HTH
> Stoitcho Goutsev (100)
>
> "Jan Kucera" <uam@centrum.cz> wrote in message
> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>> Any idea how to implement such thing like SmartTag into WPF app?
>>
>> Thanks,
>> Jan

>
>


Old 11-22-2006   #5 (permalink)
Jan Kucera
Guest


 

Re: SmartTag

Hi Stoitcho,
yes this is the thing. However, instead of looking for that in Cider, I
would like to write my own application in WPF which could display smart
tags... but I have no idea how to write such smart tag using code...

Jan


"Stoitcho Goutsev (100)" <100@100.com> wrote in message
news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
> Jan,
>
> By SmartTag do you mean the little box that shows up in the corner of the
> control at design time and drops down a menu-like control with properties?
> If this is what you meant then I'm afraid that this feature is not
> supported in Cider anymore. However Cider has pretty powerfull
> extensibility model based on adornments that can be used to implement this
> feature.
> Download the latest CTP of Cider and look at the docs to see how the new
> extensibility model works.
>
>
> --
> HTH
> Stoitcho Goutsev (100)
>
> "Jan Kucera" <uam@centrum.cz> wrote in message
> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>> Any idea how to implement such thing like SmartTag into WPF app?
>>
>> Thanks,
>> Jan

>
>


Old 11-23-2006   #6 (permalink)
Stoitcho Goutsev \(100\)
Guest


 

Re: SmartTag

Jan,

You can create and adorner control (derived form the Adorner WPF class -
this is different than Cider adorners) and have a context menu to drop when
the adorner is clicked or hovered. Ofcourse there is going to be more logic
to that.

What part exactly bothers you?


--
Stoitcho Goutsev (100)

"Jan Kucera" <uam@centrum.cz> wrote in message
news:972AFA26-34F8-45B9-9521-2D0A27DCC14A@microsoft.com...
> Hi Stoitcho,
> yes this is the thing. However, instead of looking for that in Cider, I
> would like to write my own application in WPF which could display smart
> tags... but I have no idea how to write such smart tag using code...
>
> Jan
>
>
> "Stoitcho Goutsev (100)" <100@100.com> wrote in message
> news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
>> Jan,
>>
>> By SmartTag do you mean the little box that shows up in the corner of the
>> control at design time and drops down a menu-like control with
>> properties? If this is what you meant then I'm afraid that this feature
>> is not supported in Cider anymore. However Cider has pretty powerfull
>> extensibility model based on adornments that can be used to implement
>> this feature.
>> Download the latest CTP of Cider and look at the docs to see how the new
>> extensibility model works.
>>
>>
>> --
>> HTH
>> Stoitcho Goutsev (100)
>>
>> "Jan Kucera" <uam@centrum.cz> wrote in message
>> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>>> Any idea how to implement such thing like SmartTag into WPF app?
>>>
>>> Thanks,
>>> Jan

>>
>>

>



Old 11-23-2006   #7 (permalink)
Stoitcho Goutsev \(100\)
Guest


 

Re: SmartTag

Jan,

You can create and adorner control (derived form the Adorner WPF class -
this is different than Cider adorners) and have a context menu to drop when
the adorner is clicked or hovered. Ofcourse there is going to be more logic
to that.

What part exactly bothers you?


--
Stoitcho Goutsev (100)

"Jan Kucera" <uam@centrum.cz> wrote in message
news:972AFA26-34F8-45B9-9521-2D0A27DCC14A@microsoft.com...
> Hi Stoitcho,
> yes this is the thing. However, instead of looking for that in Cider, I
> would like to write my own application in WPF which could display smart
> tags... but I have no idea how to write such smart tag using code...
>
> Jan
>
>
> "Stoitcho Goutsev (100)" <100@100.com> wrote in message
> news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
>> Jan,
>>
>> By SmartTag do you mean the little box that shows up in the corner of the
>> control at design time and drops down a menu-like control with
>> properties? If this is what you meant then I'm afraid that this feature
>> is not supported in Cider anymore. However Cider has pretty powerfull
>> extensibility model based on adornments that can be used to implement
>> this feature.
>> Download the latest CTP of Cider and look at the docs to see how the new
>> extensibility model works.
>>
>>
>> --
>> HTH
>> Stoitcho Goutsev (100)
>>
>> "Jan Kucera" <uam@centrum.cz> wrote in message
>> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>>> Any idea how to implement such thing like SmartTag into WPF app?
>>>
>>> Thanks,
>>> Jan

>>
>>

>



Old 11-23-2006   #8 (permalink)
Jan Kucera
Guest


 

Re: SmartTag

Well actually I was afraid of drawing or animating not persistent graphics
on the surface. But if I use a control I expect this is not my problem now.
;-)
Thanks for replies.


"Stoitcho Goutsev (100)" <100@100.com> wrote in message
news:%23p8G3uwDHHA.3396@TK2MSFTNGP02.phx.gbl...
> Jan,
>
> You can create and adorner control (derived form the Adorner WPF class -
> this is different than Cider adorners) and have a context menu to drop
> when the adorner is clicked or hovered. Ofcourse there is going to be more
> logic to that.
>
> What part exactly bothers you?
>
>
> --
> Stoitcho Goutsev (100)
>
> "Jan Kucera" <uam@centrum.cz> wrote in message
> news:972AFA26-34F8-45B9-9521-2D0A27DCC14A@microsoft.com...
>> Hi Stoitcho,
>> yes this is the thing. However, instead of looking for that in Cider, I
>> would like to write my own application in WPF which could display smart
>> tags... but I have no idea how to write such smart tag using code...
>>
>> Jan
>>
>>
>> "Stoitcho Goutsev (100)" <100@100.com> wrote in message
>> news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
>>> Jan,
>>>
>>> By SmartTag do you mean the little box that shows up in the corner of
>>> the control at design time and drops down a menu-like control with
>>> properties? If this is what you meant then I'm afraid that this feature
>>> is not supported in Cider anymore. However Cider has pretty powerfull
>>> extensibility model based on adornments that can be used to implement
>>> this feature.
>>> Download the latest CTP of Cider and look at the docs to see how the new
>>> extensibility model works.
>>>
>>>
>>> --
>>> HTH
>>> Stoitcho Goutsev (100)
>>>
>>> "Jan Kucera" <uam@centrum.cz> wrote in message
>>> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>>>> Any idea how to implement such thing like SmartTag into WPF app?
>>>>
>>>> Thanks,
>>>> Jan
>>>
>>>

>>

>
>


Old 11-23-2006   #9 (permalink)
Jan Kucera
Guest


 

Re: SmartTag

Well actually I was afraid of drawing or animating not persistent graphics
on the surface. But if I use a control I expect this is not my problem now.
;-)
Thanks for replies.


"Stoitcho Goutsev (100)" <100@100.com> wrote in message
news:%23p8G3uwDHHA.3396@TK2MSFTNGP02.phx.gbl...
> Jan,
>
> You can create and adorner control (derived form the Adorner WPF class -
> this is different than Cider adorners) and have a context menu to drop
> when the adorner is clicked or hovered. Ofcourse there is going to be more
> logic to that.
>
> What part exactly bothers you?
>
>
> --
> Stoitcho Goutsev (100)
>
> "Jan Kucera" <uam@centrum.cz> wrote in message
> news:972AFA26-34F8-45B9-9521-2D0A27DCC14A@microsoft.com...
>> Hi Stoitcho,
>> yes this is the thing. However, instead of looking for that in Cider, I
>> would like to write my own application in WPF which could display smart
>> tags... but I have no idea how to write such smart tag using code...
>>
>> Jan
>>
>>
>> "Stoitcho Goutsev (100)" <100@100.com> wrote in message
>> news:%23ExXpAlDHHA.348@TK2MSFTNGP06.phx.gbl...
>>> Jan,
>>>
>>> By SmartTag do you mean the little box that shows up in the corner of
>>> the control at design time and drops down a menu-like control with
>>> properties? If this is what you meant then I'm afraid that this feature
>>> is not supported in Cider anymore. However Cider has pretty powerfull
>>> extensibility model based on adornments that can be used to implement
>>> this feature.
>>> Download the latest CTP of Cider and look at the docs to see how the new
>>> extensibility model works.
>>>
>>>
>>> --
>>> HTH
>>> Stoitcho Goutsev (100)
>>>
>>> "Jan Kucera" <uam@centrum.cz> wrote in message
>>> news:36906538-A1F4-4EDC-86B2-858C96B9E541@microsoft.com...
>>>> Any idea how to implement such thing like SmartTag into WPF app?
>>>>
>>>> Thanks,
>>>> Jan
>>>
>>>

>>

>
>


Closed Thread

Thread Tools
Display Modes









Vistax64.com is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media 2005-2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50