Binding doesn't depend on properties; you can get the benefits of binding with either fields or properties.
It looks like you might've left something out, maybe? The following MXML and AS, for example, work to bind on both a field and a property, once the class and its instance are marked Bindable:
package
{
[Bindable]
public class MyFoo
{
public var myPublicField:int;
private var _myPrivateField:int;
public function MyFoo()
{
myPublicField = 0;
myPublicProperty = 0;
}
public function get myPublicProperty():int
{
return _myPrivateField;
}
public function set myPublicProperty(value:int):void
{
_myPrivateField = value;
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
[Bindable]
private var myFoo:MyFoo;
private function increment():void
{
if (!myFoo)
myFoo = new MyFoo();
myFoo.myPublicField += 1;
myFoo.myPublicProperty += 1;
}
private function replace():void
{
myFoo = new MyFoo();
}
]]>
</mx:Script>
<mx:VBox>
<mx:HBox>
<mx:Label text="Field:" />
<mx:Text text="{myFoo.myPublicField}" />
</mx:HBox>
<mx:HBox>
<mx:Label text="Property:" />
<mx:Text text="{myFoo.myPublicProperty}" />
</mx:HBox>
<mx:Button label="Increment Both Counts" click="increment()" />
<mx:Button label="Replace with New Foo" click="replace()" />
</mx:VBox>
</mx:Application>
Incidentally, the effect would be the same if you marked the field and the property Bindable separately, rather than marking the class, which is just shorthand for the same thing. Also note myFoo starts out null by default, as in your sample code (i.e., the " = null" assignment is redundant).
Does this example help? If not, leave a comment and I'll check back. Hope it does!