Граф коммитов

422 Коммитов

Автор SHA1 Сообщение Дата
Scott Lovegrove b49d3ddb42 Merge pull request #111 from veleek/patch-1
Clarify build instructions and prerequisites
2016-09-06 13:42:55 +01:00
Ben Randall d3b0c709a4 Clarify build instructions and prerequisites
Added Multilingual App Toolkit to prerequisites for building XamlBehaviors.
Fixed some formatting.
Added note about version override for NuGet package creation scripts.
2016-09-05 17:23:53 -07:00
Nigel Sampson 5f1a2bb893 Merge pull request #110 from nigel-sampson/bug/samples
Move ContentProperty to base. Resolves #102
2016-08-30 21:34:21 +12:00
Nigel Sampson b4fc8e6303 Move ContentProperty to base class 2016-08-30 21:22:47 +12:00
Scott Lovegrove a20072bef1 Merge pull request #109 from Microsoft/dev/skendrot/108
Remove EditorBrowsable attribute. No reason to hide the property.
2016-08-26 18:15:41 +01:00
Shawn Kendrot cedf399d53 Remove EditorBrowsable attribute. No reason to hide the property.
Fixes #108
2016-08-26 11:03:12 -06:00
Joost van Schaik 4077b82107 Merge pull request #104 from PedroLamas/commandparameterunsetcheck
Fixed #103: Check for CommandParamenter value set instead of non-null value
2016-08-21 18:49:53 +02:00
Pedro Lamas e71c6d96eb Fixed #103: Check for CommandParamenter value set instead of non-null value
As it currently stands, the InvokeCommandAction.CommandParamenter can
never have a null value as it will make it fallback to the other
approaches, which can raise an InvalidCastException.

A null value should be allowed for the CommandParameter, so instead of
doing a null check, I've replaced it with a property unset check
instead.
2016-06-21 11:16:54 +01:00
Shawn Kendrot 22e885bf97 Merge pull request #100 from wieslawsoltes/FixTriggerClassComments
Fix Trigger class comment
2016-06-14 13:49:24 -06:00
Wiesław Šoltés 251950a76d Fix Trigger class comment 2016-06-14 18:21:16 +02:00
Nigel Sampson 971031aad3 Merge pull request #99 from nigel-sampson/feature/triggers
Adds an interface for triggers. Resolves #20
2016-06-14 21:55:56 +12:00
Nigel Sampson d03363c002 Use base Trigger in existing classes 2016-06-04 22:27:06 +12:00
Nigel Sampson 47bc20f3e3 Create base classes for Trigger and Trigger<T> 2016-06-04 22:24:33 +12:00
Nigel Sampson 992adc427c Create trigger interface 2016-06-04 22:19:34 +12:00
Drew Gillies 56b1d7a0df Merge pull request #93 from Microsoft/dev/mtaron/designcleanup
Design Assembly Cleanup
2016-03-01 16:41:01 -08:00
Michael Taron 3aa73fd297 Extensibility assembly full names
Use the assembly full names since the CI build needs them.
2016-02-26 09:52:33 -08:00
Michael Taron e16d9f55c4 Design Assembly Cleanup
This change cleans up the .Design assemblies. Changes include:
- Tweak build configurations so the project now builds successfully for
all configurations.
- Remove unused WinRT references from the design assemblies.
- Removes some dead code.
- Use nameof() instead of string literals when setting extensible
attributes.
2016-02-25 19:15:11 -08:00
Marco Goertz a9b72d7ea7 Merge pull request #92 from Microsoft/dev/drewgil/unittestbuildfix
Re-enable unit test build for managed by removing signing dependency …
2016-02-25 13:25:05 -08:00
Drew Gillies cd501c0478 Re-enable unit test build for managed by removing signing dependency from Interactions friending. 2016-02-25 12:55:22 -08:00
Joost van Schaik 1e8dc9358d Merge pull request #90 from PedroLamas/eventtriggerbehaviorxbind
Fixed #89: Ensured EventTriggerBehavior supports x:Bind bindings
2016-02-25 18:08:21 +01:00
Pedro Lamas 3c04fc7f6a Fixed #89: Ensured EventTriggerBehavior supports x:Bind bindings
For x:Bind to work with EventTriggerbehavior, we need to ensure that no
exception gets raised for not finding the request event on the source
object, as this will might (will) get evaluate at a later phase.

So instead of raising an exception, we just gracefully return from the
method.
2016-02-25 15:12:40 +00:00
Jon W Chu 3c2d2b1aeb Merge pull request #87 from Microsoft/dev/jonchu/docs
Update Readme to reference Changelog
2016-02-22 15:33:54 -08:00
Jon W Chu 0b48be99b0 Update README.md 2016-02-22 15:08:56 -08:00
Jon W Chu c580529245 Merge pull request #86 from Microsoft/master
Updating docs branch
2016-02-22 15:04:21 -08:00
Scott Lovegrove 57d70e0bfb Merge pull request #85 from Microsoft/dev/ltong/versioning
Update version and remove sn.
2016-02-19 22:42:36 +00:00
Lingling Tong 029f4e5d81 review comments 2016-02-19 12:21:57 -08:00
Lingling Tong ceb2f68109 Update version and remove sn. 2016-02-19 11:51:38 -08:00
Nigel Sampson e7f714c1d0 Merge pull request #80 from nigel-sampson/samples
Samples use build output rather than nuget packages
2016-02-04 10:00:19 +13:00
Scott Lovegrove e1e5a593b2 Merge pull request #64 from alexanderkozlenko/pr_m_b
Fix managed SDK build
2016-02-03 09:20:46 +00:00
Nigel Sampson f07bec0b41 Native Sample uses build output 2016-02-03 13:41:14 +13:00
Nigel Sampson 23c2f4b328 Managed Sample uses build output 2016-02-03 12:28:38 +13:00
Scott Lovegrove 393920f7d6 Merge pull request #77 from PedroLamas/eventtriggerbehaviorruntime
Fixed #76: Properly check for Windows Runtime events in EventTriggerBehavior
2016-01-27 09:27:39 +00:00
Pedro Lamas 71bf9ba628 Fixed #76: Properly check for Windows Runtime events in EventTriggerBehavior
Developers can reuse the Windows Runtime event handlers in their custom
controls, but for those cases, the EventTriggerBerhavior shouldn't use
the WindowsRuntimeMarshal class.

This change ensures that not only the EventInfo.EventHandler is checked
for Windows Runtime type, but also that the EventInfo.DeclaringType is
also checked.

This ensures that a custom button extendind the Button Windows Runtime
class will still consider the Click event as a Windows Runtime event,
but a custom MyClick event in it, wouldn't.
2016-01-26 11:24:49 +00:00
Brian Lagunas 4e18bade6c added native behaviors AppVeyor badge 2016-01-22 16:43:24 -07:00
Brian Lagunas 54a26463d3 Merge pull request #74 from Microsoft/Build-Configuraton-Fix
Project references updated: Success!!! updating the project references fixed the automated build.
2016-01-22 16:42:02 -07:00
Brian Lagunas 2d2203d5d6 fixed assembly references for design projects
It seems the designer projects were not referencing their respective
projects in the solution, but instead a relative folder path. This was
causing the design assemblies to be build prior to the dependent
assemblies causing the build to fail. Hopefully this will fix the
automated build issue :)
2016-01-22 16:27:14 -07:00
Brian Lagunas 7d4e75cd0e Merge pull request #73 from Microsoft/Build-Configuraton-Fix
modified native build configuration in an effort to fix the AppVeyor build and to test the automated build process when merging a PR into the master.
2016-01-21 17:45:00 -07:00
Brian Lagunas 0d79445f2b modified native build configuration
the build configuration for the native solution did not include
Microsoft.Xaml.Interactions or Microsoft.Xaml.Interactivity in the
build.  This cause the AppVeyor automated build to fail.  I modified the
build configuration to see if that would fix the automated build issue.
2016-01-21 17:34:12 -07:00
Brian Lagunas 9fdce92204 added build badge for managed behaviors 2016-01-21 14:50:19 -07:00
Jon W Chu f1bfc177a3 Merge pull request #71 from Microsoft/dev/jonchu/docs
Adding Gitter Room Link
2016-01-20 17:10:27 -08:00
Jon W Chu d4b4833eb9 Adding Gitter Room Link 2016-01-20 17:08:50 -08:00
Nigel Sampson 5bdb4c1cfa Merge pull request #61 from wieslawsoltes/Documentation
Documentation
2016-01-11 08:12:53 +13:00
Shawn Kendrot 2427a666e3 Merge pull request #66 from alexanderkozlenko/pr_m_lua
Add localization for uk-UA (Ukrainian) language.
Without knowing Ukrainian, everything looks good.
2016-01-08 11:01:34 -07:00
Erik De Bonte a4507cf29d Merge pull request #63 from Microsoft/dev/erikd/Issue62
Issue #62: Fixed NavigateToPageAction to find INavigate ancestors
2016-01-04 08:46:16 -08:00
Alexander Kozlenko e840aac76e Fix few issues with uk-UA localization 2015-12-28 11:25:12 +02:00
Alexander Kozlenko 95d9a02ac3 Add localization for uk-UA (Ukrainian) language 2015-12-28 02:04:07 +02:00
Scott Lovegrove 858fc2b954 Merge pull request #65 from alexanderkozlenko/pr_m_nameof
Use nameof expression to reference parameters
2015-12-22 08:24:32 +00:00
Alexander Kozlenko 7ae89d1692 Use nameof expression to reference parameters 2015-12-22 00:54:55 +02:00
Alexander Kozlenko 1a91a54544 Merge branch 'pr_m_b' of https://github.com/alexanderkozlenko/XamlBehaviors.git 2015-12-22 00:43:42 +02:00
Alexander Kozlenko 8930f28936 Fix projects build order and unit tests project certificate 2015-12-22 00:38:50 +02:00